Extract week number from POSIXct object

Gianluca picture Gianluca · Sep 16, 2014 · Viewed 15.5k times · Source

Is there a function in lubridate to extract the week number? I've tried to search for that but couldn't find anything which serves the purpose.

The week() function does something different.

Description

Date-time must be a POSIXct, POSIXlt, Date, chron, yearmon, yearqtr, zoo, zooreg, timeDate, xts, > its, ti, jul, timeSeries, and fts objects. Weeks is 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.

Answer

Prasanna Nandakumar picture Prasanna Nandakumar · Sep 16, 2014

Use strftime:

dateRange <- c("2008-10-01","2008-12-01") 
x <- as.POSIXlt(dateRange) 
strftime(x,format="%W") 
[1] "39" "48"