After reading in my csv, I have the date as a factor in the following format, dd-mm-yy (30-Dec-16). How can I convert the above to a readable date.
I've tried the following:
as.Date(DF$V1, "%m/%d/%Y")
and
as.Date(DF$V1, "%d/%b/%y")
Thanks, S