Skip to main content

Easy dynamic time series forecasting in Python

Project description

🌄 Scalecast: Easy dynamic time series forecasting in Python

About

Scalecast is a light-weight modeling procedure and model wrapper meant for those who have at least an intermediate understanding of time series forecasting theory and want to cut the tedious part of data processing, applying autoregression to models, differencing and undifferencing series, and visualizing results, usually on small-to-medium sized datasets (less than 1,000 data points). It can certainly be used for larger, more complex datasets, but if you are looking for a package with more emphasis on deep learning that offers many of the same features as scalecast, darts is recommended.

Scalecast provides a Forecaster wrapper around the following estimators:

A very simple scalecast process to load data, add regressors, and create validated forecasts looks like this:

import pandas as pd
import pandas_datareader as pdr
import matplotlib.pyplot as plt
from scalecast import GridGenerator
from scalecast.Forecaster import Forecaster

models = ('mlr','knn','svr','xgboost','elasticnet','mlp','prophet')
df = pdr.get_data_fred('HOUSTNSA',start='2009-01-01',end='2021-06-01')
GridGenerator.get_example_grids() # saves Grids.py with validation grids for each model that can be used to tune the forecasts
f = Forecaster(y=df.HOUSTNSA,current_dates=df.index) # to initialize, specify y and current_dates (must be arrays of the same length)
f.set_test_length(12) # specify a test length for your models - do this before eda
f.generate_future_dates(24) # this will create future dates that are on the same interval as the current dates and it will also set the forecast length
f.add_ar_terms(4) # add AR terms before differencing
f.add_AR_terms((2,12)) # seasonal AR terms
f.integrate() # automatically decides if the y term and all ar terms should be differenced to make the series stationary
f.add_seasonal_regressors('month',raw=False,sincos=True) # uses pandas attributes: raw=True creates integers (default), sincos=True creates wave functions
f.add_seasonal_regressors('year')
f.add_covid19_regressor() # dates are flexible, default is from when disney world closed to when US CDC lifted mask recommendations
f.add_time_trend()
f.set_validation_length(6) # length, different than test_length, to tune the hyperparameters 
f.tune_test_forecast(models)
f.plot_test_set(models='top_3',order_by='LevelTestSetMAPE',ci=True) # plots the differenced test set with confidence intervals
plt.show()
f.plot(order_by='LevelTestSetMAPE',level=True) # plots the level forecast
plt.show()

Installation

  1. pip install scalecast
    • installs the base package and most dependencies
  2. pip install fbprophet
    • only necessary if you plan to forecast with Facebook prophet models
    • to resolve a common installation issue, see this Stack Overflow post
  3. pip install greykite
    • only necessary if you plan to forecast with LinkedIn Silverkite
  4. If using notebook:
    • pip install tqdm
    • pip install ipython
    • pip install ipywidgets
    • jupyter nbextension enable --py widgetsnbextension
    • if using Jupyter Lab: jupyter labextension install @jupyter-widgets/jupyterlab-manager

Initialization

from scalecast.Forecaster import Forecaster
array_of_dates = ['2021-01-01','2021-01-02','2021-01-03']
array_of_values = [1,2,3]
f = Forecaster(y=array_of_values, current_dates=array_of_dates)

Links

Links
📚 Read the Docs Official scalecast docs
📋 Examples Official scalecast notebooks
📓 Binder Notebook Play with an example in your browser
🛠️ Change Log See what's changed

What can scalecast do?

Dynamic Univariate Forecasting ✔️
Dynamic Univariate Forecasting with Exogenous Regressors ✔️
Dynamic Multivariate Vector Forecasting ✔️
Dynamic Multivariate Vector Forecasting with Exogenous Regressors ✔️
Hyperparameter Tuning ✔️
Backcasting ✔️
Model Validation ✔️
Model Summary Generation ✔️
Future Period Forecasting ✔️
Plotting ✔️
Bootstrapped Confidence Intervals ✔️
Seasonality Capturing ✔️
Feature Importance ✔️
Feature Selection ✔️
Linear Models ✔️
Non-linear Models ✔️
Tree Models ✔️
Dense Neural Networks ✔️
Recurrent Neural Networks ✔️
ARIMA ✔️
Exponential Smoothing ✔️
Facebook Prophet ✔️
LinkedIn Silverkite ✔️
Ensemble Modeling ✔️
Any Scikit-learn Regressor or API ✔️
Differencing ✔️
Undifferencing ✔️
Level Results ✔️

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

SCALECAST-0.9.2.tar.gz (792.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page