0

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!!

Katharina Böhm
  • 125
  • 1
  • 8

2 Answers2

2

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"
0

Assuming all the dates will be converted to the first of the month, this lubridate solution works.

library(lubridate)

dates <- c(192607, 192608)

dates <- paste0(dates, '01') # add 01 for day of month

# output: "19260701" "19260801"

dates <- ymd(dates)

# output: "1926-07-01" "1926-08-01"
TTS
  • 1,818
  • 7
  • 16