How to Save an ARIMA Time Series Forecasting Model in Python
Last Updated on August 28, 2019 The Autoregressive Integrated Moving Average Model, or ARIMA, is a popular linear model for time series analysis and forecasting. The statsmodels library provides an implementation of ARIMA for use in Python. ARIMA models can be saved to file for later use in making predictions on new data. There is a bug in the current version of the statsmodels library that prevents saved models from being loaded. In this tutorial, you will discover how to diagnose […]
Read more