Hello,
I just want to simply convert characters to dates for my data frame.
But, instead of correcting the whole range of dates, the as.Date function changes all my dates into either the beginning or last one.
Day <- c("10/10/1988", "14/10/2017")
BetterDates <- as.Date(Day,format = "%d/%m/%y")
This transforms all my dates to 1988-10-10 or 2017-10-14, instead of adjusting the whole range (there's 2000 entries with separate dates).
Any idea what the issue is?