r - Converting dates with a format of d/mm/yy (for years earlier than 69) -


converting character "6/07/69" date using as.date function results in "2068-07-06" instead of "1968-07-06". how can fix this?

example:

as.date(c("6/07/68", "6/07/69"), format="%d/%m/%y") [1] "2068-07-06" "1969-07-06" 

you can use library chron

e.g.

> library(chron) > as.date(chron(c("6/07/67", "6/07/69"), format = c(dates = "m/d/y"))) #[1] "1967-06-07" "1969-06-07" 

Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

java - How to create Table using Apache PDFBox -

mpi - Why is MPI_Bsend not returning error even when the buffer is insufficient to accommodate all the messages -