Learn R Programming

clock (version 0.7.1)

year-week-day-widen: Widen: year-week-day

Description

This is a year-week-day method for the calendar_widen() generic. It widens a year-week-day vector to the specified precision.

Usage

# S3 method for clock_year_week_day
calendar_widen(x, precision)

Value

x widened to the supplied precision.

Arguments

x

[clock_year_week_day]

A year-week-day vector.

precision

[character(1)]

One of:

  • "year"

  • "week"

  • "day"

  • "hour"

  • "minute"

  • "second"

  • "millisecond"

  • "microsecond"

  • "nanosecond"

Examples

Run this code
# Week precision
x <- year_week_day(2019, 1, start = clock_weekdays$monday)
x

# Widen to day precision
# In this calendar, the first day of the week is a Monday
calendar_widen(x, "day")

# Or second precision
sec <- calendar_widen(x, "second")
sec

Run the code above in your browser using DataLab