I would like to convert this into a date:
as.POSIXct("Mar 29 2013", format = "%b %d %Y")
I read to use "%b" for abbreviated month. It seems to work for:
as.POSIXct("Apr 29 2013", format = "%b %d %Y")
I found month.abb
, which might be used for checking the month abbreviation. However, it includes "Mar" as the third month.
So my question is, what is wrong with:
as.POSIXct("Mar 29 2013", format = "%b %d %Y")