I'm trying to convert "07,29,30" into a Date format using as.Date() in R.
(Note that the format of the string is "mm,dd,yy", being July 29, 1930)
So I used the following code:
as.Date("07,29,30", format = "%m,%d,%y")
But the year that I get returned is 2030, not 1930. How can I tell R to convert the value to the date a century before?