I have a data frame that can have values like this:
p<-c("2012-08-14 9:00", "2012-08-14 7:00:00")
I am trying to conver to datetime as this:
p<-as.POSIXct(p)
this converted everyting to to 2012-08-14 09:00:00
for some reason, it is not working anymore. If you have noticed, my data sometimes have seconds and somtimes it does not. How do you force this to be datetime format?
I get errors like this:
Error in as.POSIXlt.character(p) :
character string is not in a standard unambiguous format
?strptimefor the arguments, but you need to include something likeas.POSIXct(p, format='%Y-%m-%d %H:%M')– Justin Aug 17 '12 at 17:51pvector you supplied. Please post the error you get. Also, can you usedput(p)so we can see the whole thing? I assume you have dates with multiple different formats which will take some munging to fix. – Justin Aug 17 '12 at 18:01