I'm looking to write a script that can simply correct dates in a data frame (observations) that have two digit years to have four digits. I have all of the logic, but I get an error when I run this code:
observations[1,"Datetime_UTC"] <- observations[1,"Datetime_UTC"] + years(2000)
This line results in:
# Error in as.POSIXlt.numeric(value) : 'origin' must be supplied
How do I resolve this error?
Thank you!
If your dates are stored with some regular formatting, but with 2-digit years, just let
lubridate
functions handle it. They can handle most delimiters (even unusual ones).