I've imported and xlsx file and I have a column of dates as characters:
Jan 08
Feb 08
Mar 08
Apr 08
etc...
I want to convert this column into dates. I've tried some suggestions I've seen on other threads but I can't get it to not return NA
Here's the latest attempt:
dates <- format(as.Date(MonthlyUKFigures$Date,format="%b-%y"),format="%b-%y")