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

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -