I have tons of .xls files with dates that im reading into R. The issue I'm having is that every person filled the "date" column in a different way. Therefore, I have things like:
date <- c(1995, 1995-05-03, 03-05-1995, 1995/5)
I've been trying to find a way to fix this:
- by using
as.Date()
- by using
convertToDate()
but this generates, of course, multiple NA
s.
Is there a way for fixing this?