Extract time components from a model
For a mable with a single model column, return the model components that are indexed by time.
time_components(object, ...)
object
: A vital mable object with a single model column....
: Not currently used.tsibble object containing the time components from the model.
aus_mortality |> dplyr::filter(State == "Victoria", Sex == "female") |> model(lee_carter = LC(log(Mortality))) |> time_components()
Useful links