| interval_pull {tsibble} | R Documentation |
Assuming regularly spaced time, the interval_pull() returns a list of time
components as the "interval" class.
interval_pull(x)
x |
A vector of |
Extend tsibble to support custom time indexes by defining S3 generics
index_valid() and interval_pull() for them.
an "interval" class (a list) includes "year", "quarter", "month", "week", "day", "hour", "minute", "second", "millisecond", "microsecond", "nanosecond", "unit".
x <- seq(as.Date("2017-10-01"), as.Date("2017-10-31"), by = 3)
interval_pull(x)