| year-day-widen {clock} | R Documentation |
This is a year-day method for the calendar_widen() generic. It
widens a year-day vector to the specified precision.
## S3 method for class 'clock_year_day' calendar_widen(x, precision)
x |
A year-day vector. |
precision |
One of:
|
x widened to the supplied precision.
# Year precision x <- year_day(2019) x # Widen to day precision calendar_widen(x, "day") # Or second precision sec <- calendar_widen(x, "second") sec # Second precision can be widened to subsecond precision milli <- calendar_widen(sec, "millisecond") micro <- calendar_widen(sec, "microsecond") milli micro # But once you have "locked in" a subsecond precision, it can't # be widened again try(calendar_widen(milli, "microsecond"))