as_year_day {clock} | R Documentation |
Convert to year-day
Description
as_year_day()
converts a vector to the year-day calendar.
Time points, Dates, POSIXct, and other calendars can all be converted to
year-day.
Usage
as_year_day(x, ...)
Arguments
x |
A vector to convert to year-day. |
... |
These dots are for future extensions and must be empty. |
Value
A year-day vector.
Examples
# From Date
as_year_day(as.Date("2019-05-01"))
# From POSIXct, which assumes that the naive time is what should be converted
as_year_day(as.POSIXct("2019-05-01 02:30:30", "America/New_York"))
# From other calendars
as_year_day(year_quarter_day(2019, quarter = 2, day = 50))
[Package clock version 0.7.1 Index]