Reputation: 77
My data contains a variable which recorded the date like "Wednesday 01/01/86". I want to drop the days like "Wednesday" and convert "01/01/86" into the format "1986-01-01".
I tried as.Date(myData$DATE)
but I got an error message: character string is not in a standard unambiguous format. I assume this is due to the character Wednesday?
Upvotes: 0
Views: 155