Overview of the modeltime forecasting capabilities
masterThe modeltime framework unifies classical time series analysis and machine learning into a single workflow. It supports several modeling approaches:
- Classical Forecast Models: Includes ARIMA and ETS (e.g.,
arima_reg(),arima_boost(), andexp_smoothing()). - Prophet: Integration with Facebook's Prophet algorithm via
prophet_reg()andprophet_boost(). - Tidymodels/Machine Learning: Any
parsnipmodel can be used for forecasting, such asrand_forest(),boost_tree(),linear_reg(),mars(), andsvm_rbf().