as_year_month_weekday: Convert to year-month-weekday

View source: R/gregorian-year-month-weekday.R

as_year_month_weekdayR Documentation

Convert to year-month-weekday

Description

as_year_month_weekday() converts a vector to the year-month-weekday calendar. Time points, Dates, POSIXct, and other calendars can all be converted to year-month-weekday.

Usage

as_year_month_weekday(x, ...)

Arguments

x

⁠[vector]⁠

A vector to convert to year-month-weekday.

...

These dots are for future extensions and must be empty.

Value

A year-month-weekday vector.

Examples

# From Date
as_year_month_weekday(as.Date("2019-01-01"))

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

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

clock documentation built on May 31, 2023, 9:39 p.m.