week {lubridate} | R Documentation |
week
returns the number of complete seven day periods that have
occured between the date and January 1st, plus one.
isoweek
returns the week as it would appear in the ISO 8601 system,
which uses a reoccuring leap week.
week(x) week(x) <- value isoweek(x)
x |
a date-time object. Must be a POSIXct, POSIXlt, Date, chron, yearmon, yearqtr, zoo, zooreg, timeDate, xts, its, ti, jul, timeSeries, or fts object. |
value |
a numeric object |
the weeks element of x as an integer number
http://en.wikipedia.org/wiki/ISO_week_date
x <- ymd("2012-03-26") week(x) week(x) <- 1 week(x) <- 54 week(x) > 3