Answers for "transform day of year to date r"

R
1

how to transform days in years R

The lubridate package contains a built-in function, time_length, which can help perform this task.

time_length(difftime(as.Date("2003-04-05"), as.Date("2001-01-01")), "years")
[1] 2.257534

time_length(difftime(as.Date("2017-03-01"), as.Date("2012-03-01")),"years")
[1] 5.00274
Posted by: Guest on May-19-2020

Code answers related to "transform day of year to date r"

Browse Popular Code Answers by Language