Hi,
I have a numeric vector that I want formatted as dates,
it currently looks like
head(EDD$DateofDesignation, 5)
[1] NA 31418 34799 34799 34799
as.Date(EDD$DateofDesignation, "%m%d%Y")
Error in charToDate(x) :
character string is not in a standard unambiguous format
can you help me find the right format? thanks!