
Last chance! 50% off unlimited learning
Sale ends in
Applies a model-specific estimation technique to predict the values of missing values in a tsibble
, and replace them.
# S3 method for TSLM
interpolate(object, new_data, specials, ...)
A tibble of the same dimension of new_data
with missing values interpolated.
A model for which forecasts are required.
A tsibble containing the time points and exogenous regressors to produce forecasts for.
(passed by fabletools::forecast.mdl_df()
).
Other arguments passed to methods
library(tsibbledata)
olympic_running %>%
model(lm = TSLM(Time ~ trend())) %>%
interpolate(olympic_running)
Run the code above in your browser using DataLab