Learn R Programming

clock (version 0.7.1)

as_iso_year_week_day: Convert to iso-year-week-day

Description

as_iso_year_week_day() converts a vector to the iso-year-week-day calendar. Time points, Dates, POSIXct, and other calendars can all be converted to iso-year-week-day.

Usage

as_iso_year_week_day(x, ...)

Value

A iso-year-week-day vector.

Arguments

x

[vector]

A vector to convert to iso-year-week-day.

...

These dots are for future extensions and must be empty.

Examples

Run this code
# From Date
as_iso_year_week_day(as.Date("2019-01-01"))

# From POSIXct, which assumes that the naive time is what should be converted
as_iso_year_week_day(as.POSIXct("2019-01-01 02:30:30", "America/New_York"))

# From other calendars
as_iso_year_week_day(year_quarter_day(2019, quarter = 2, day = 50))

Run the code above in your browser using DataLab