I am trying to convert this t field to datetime in R. This is the vector:
dput(t)
"01-DEC-15 04.50.14.000000000 PM"
I tried this:
tt<-as.POSIXct(t, format="%d-%b-%Y %I.%M.%S %p")
when I print out the tt, I get NA. Any ideas what I'm doing wrong?