I'm trying to use as.Date with some data, but I encounter NAs with specific months. I created a data.frame named Fake to test it, and it gave me the same error : it works with September but not with August.
Fake <- c("Sep 12 2014", "Aug 12 2014")
as.Date(Fake, format ="%b %d %Y")
This is what I get:
> as.Date(Fake, format ="%b %d %Y")
[1] "2014-09-12" NA
I need to use June data also but it doesn't work, even if July data does. Anyone can help?