skforecastEasy Examples

Scikit-learn compatible time series forecasting with lag features

Getting started with skforecast

Installation and basic usage of skforecast.

python
# Install: pip install skforecast
import skforecast

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

skforecast is a third-party package. Scikit-learn compatible time series forecasting with lag features. Install with: pip install skforecast

Common skforecast operations

Frequently used features of skforecast.

python
# Install: pip install skforecast
import skforecast

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

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

Want to try these examples interactively?

Open Easy Playground