lubridate (version 0.1)

week: Get/set weeks component of a date-time.

Description

Get/set weeks component of a date-time.

Usage

week(x)

Arguments

x
a date-time object

Value

  • the weeks element of x as an integer number

Details

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.

Examples

Run this code
x <- now()
week(x) 
week(x) <- 1  
week(x) <- 54
week(x) > 3

Run the code above in your browser using DataCamp Workspace