I have dates in format
192607 192608
and want to transform them so that they are in the following format and can be used for a xts object
1926-07-01 1926-08-01
I have tried working with as.date and paste() but couldn't make it work. Help is very much appreciated. Thank you!!
You need to paste then put format date. Something like this:
dates <- c("192607", "192608") dates <- paste0(dates,"01") dates <- as.Date(dates, format ="%Y%m%d") dates
The result is
[1] "1926-07-01" "1926-08-01"
2.1m questions
2.1m answers
60 comments
57.0k users