statsforecastEasy Examples

Fast statistical forecasting: ARIMA, ETS, Theta, CrostonSBA

Getting started with statsforecast

Installation and basic usage of statsforecast.

python
# Install: pip install statsforecast
import statsforecast

# Basic statsforecast usage
print(f"Using statsforecast")
# See documentation for detailed examples
Expected Output
# Expected output shown below
# (Run locally with: statsforecast)

statsforecast is a third-party package. Fast statistical forecasting: ARIMA, ETS, Theta, CrostonSBA. Install with: pip install statsforecast

Common statsforecast operations

Frequently used features of statsforecast.

python
# Install: pip install statsforecast
import statsforecast

# Common statsforecast patterns
print(f"statsforecast version: {statsforecast.__version__}")

These are the most commonly used features of statsforecast in everyday development.

Want to try these examples interactively?

Open Easy Playground