Find ISO Week and Year of Date Objects
isoWeekYear(Y, M, D)
Y |
year(s) or a Date/POSIXt object. Can be a vector. |
M |
month(s), only used if |
D |
day(s), only used if |
A list with entries ISOYear
and ISOWeek
containing the
corresponding results.
dates <- as.Date(c("2002-12-31","2003-01-01","2003-01-06")) isoWeekYear(dates) ## the same using numeric inputs: isoWeekYear(Y = c(2002, 2003, 2003), M = c(12, 1, 1), D = c(31, 1, 6))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.