Skip to main content

Time series forecasting suite using statistical models

Project description

Nixtla

Tweet Slack

All Contributors

Statistical โšก๏ธ Forecast

Lightning fast forecasting with statistical and econometric models

CI Python PyPi conda-nixtla License docs Downloads

StatsForecast offers a collection of widely used univariate time series forecasting models, including automatic ARIMA, ETS, CES, and Theta modeling optimized for high performance. It also includes a large battery of benchmarking models.

Installation

You can install StatsForecast with:

pip install statsforecast

or

conda install -c conda-forge statsforecast

Vist our Installation Guide for further instructions.

Quick Start

Minimal Example

from statsforecast import StatsForecast
from statsforecast.models import AutoARIMA
from statsforecast.utils import AirPassengersDF

df = AirPassengersDF
sf = StatsForecast(
    models=[AutoARIMA(season_length=12)],
    freq='ME',
)
sf.fit(df)
sf.predict(h=12, level=[95])

Get Started quick guide

Follow this end-to-end walkthrough for best practices.

Why?

Current Python alternatives for statistical models are slow, inaccurate and don't scale well. So we created a library that can be used to forecast in production environments or as benchmarks. StatsForecast includes an extensive battery of models that can efficiently fit millions of time series.

Features

  • Fastest and most accurate implementations of AutoARIMA, AutoETS, AutoCES, MSTL and Theta in Python.
  • Out-of-the-box compatibility with Spark, Dask, and Ray.
  • Probabilistic Forecasting and Confidence Intervals.
  • Support for exogenous Variables and static covariates.
  • Anomaly Detection.
  • Familiar sklearn syntax: .fit and .predict.

Highlights

  • Inclusion of exogenous variables and prediction intervals for ARIMA.
  • 20x faster than pmdarima.
  • 1.5x faster than R.
  • 500x faster than Prophet.
  • 4x faster than statsmodels.
  • 1,000,000 series in 30 min with ray.
  • Replace FB-Prophet in two lines of code and gain speed and accuracy. Check the experiments here.
  • Fit 10 benchmark models on 1,000,000 series in under 5 min.

Missing something? Please open an issue or write us in Slack

Examples and Guides

๐Ÿ“š End to End Walkthrough: Model training, evaluation and selection for multiple time series

๐Ÿ”Ž Anomaly Detection: detect anomalies for time series using in-sample prediction intervals.

๐Ÿ‘ฉโ€๐Ÿ”ฌ Cross Validation: robust modelโ€™s performance evaluation.

โ„๏ธ Multiple Seasonalities: how to forecast data with multiple seasonalities using an MSTL.

๐Ÿ”Œ Predict Demand Peaks: electricity load forecasting for detecting daily peaks and reducing electric bills.

๐Ÿ“ˆ Intermittent Demand: forecast series with very few non-zero observations.

๐ŸŒก๏ธ Exogenous Regressors: like weather or prices

Models

Automatic Forecasting

Automatic forecasting tools search for the best parameters and select the best possible model for a group of time series. These tools are useful for large collections of univariate time series.

Model Point Forecast Probabilistic Forecast Insample fitted values Probabilistic fitted values Exogenous features
AutoARIMA โœ… โœ… โœ… โœ… โœ…
AutoETS โœ… โœ… โœ… โœ…
AutoCES โœ… โœ… โœ… โœ…
AutoTheta โœ… โœ… โœ… โœ…
AutoMFLES โœ… โœ… โœ… โœ… โœ…
AutoTBATS โœ… โœ… โœ… โœ…

ARIMA Family

These models exploit the existing autocorrelations in the time series.

Model Point Forecast Probabilistic Forecast Insample fitted values Probabilistic fitted values Exogenous features
ARIMA โœ… โœ… โœ… โœ… โœ…
AutoRegressive โœ… โœ… โœ… โœ… โœ…

Theta Family

Fit two theta lines to a deseasonalized time series, using different techniques to obtain and combine the two theta lines to produce the final forecasts.

Model Point Forecast Probabilistic Forecast Insample fitted values Probabilistic fitted values Exogenous features
Theta โœ… โœ… โœ… โœ… โœ…
OptimizedTheta โœ… โœ… โœ… โœ…
DynamicTheta โœ… โœ… โœ… โœ…
DynamicOptimizedTheta โœ… โœ… โœ… โœ…

Multiple Seasonalities

Suited for signals with more than one clear seasonality. Useful for low-frequency data like electricity and logs.

Model Point Forecast Probabilistic Forecast Insample fitted values Probabilistic fitted values Exogenous features
MSTL โœ… โœ… โœ… โœ… If trend forecaster supports
MFLES โœ… โœ… โœ… โœ… โœ…
TBATS โœ… โœ… โœ… โœ…

GARCH and ARCH Models

Suited for modeling time series that exhibit non-constant volatility over time. The ARCH model is a particular case of GARCH.

Model Point Forecast Probabilistic Forecast Insample fitted values Probabilistic fitted values Exogenous features
GARCH โœ… โœ… โœ… โœ…
ARCH โœ… โœ… โœ… โœ…

Baseline Models

Classical models for establishing baseline.

Model Point Forecast Probabilistic Forecast Insample fitted values Probabilistic fitted values Exogenous features
HistoricAverage โœ… โœ… โœ… โœ…
Naive โœ… โœ… โœ… โœ…
RandomWalkWithDrift โœ… โœ… โœ… โœ…
SeasonalNaive โœ… โœ… โœ… โœ…
WindowAverage โœ…
SeasonalWindowAverage โœ…

Exponential Smoothing

Uses a weighted average of all past observations where the weights decrease exponentially into the past. Suitable for data with clear trend and/or seasonality. Use the SimpleExponential family for data with no clear trend or seasonality.

Model Point Forecast Probabilistic Forecast Insample fitted values Probabilistic fitted values Exogenous features
SimpleExponentialSmoothing โœ… โœ…
SimpleExponentialSmoothingOptimized โœ… โœ…
SeasonalExponentialSmoothing โœ… โœ…
SeasonalExponentialSmoothingOptimized โœ… โœ…
Holt โœ… โœ… โœ… โœ…
HoltWinters โœ… โœ… โœ… โœ…

Sparse or Inttermitent

Suited for series with very few non-zero observations

Model Point Forecast Probabilistic Forecast Insample fitted values Probabilistic fitted values Exogenous features
ADIDA โœ… โœ… โœ…
CrostonClassic โœ… โœ… โœ…
CrostonOptimized โœ… โœ… โœ…
CrostonSBA โœ… โœ… โœ…
IMAPA โœ… โœ… โœ…
TSB โœ… โœ… โœ…

๐Ÿ”จ How to contribute

See CONTRIBUTING.md.

Citing

@misc{garza2022statsforecast,
    author={Azul Garza, Max Mergenthaler Canseco, Cristian Challรบ, Kin G. Olivares},
    title = {{StatsForecast}: Lightning fast forecasting with statistical and econometric models},
    year={2022},
    howpublished={{PyCon} Salt Lake City, Utah, US 2022},
    url={https://github.com/Nixtla/statsforecast}
}

Contributors โœจ

Thanks goes to these wonderful people (emoji key):

azul
azul

๐Ÿ’ป ๐Ÿšง
Josรฉ Morales
Josรฉ Morales

๐Ÿ’ป ๐Ÿšง
Sugato Ray
Sugato Ray

๐Ÿ’ป
Jeff Tackes
Jeff Tackes

๐Ÿ›
darinkist
darinkist

๐Ÿค”
Alec Helyar
Alec Helyar

๐Ÿ’ฌ
Dave Hirschfeld
Dave Hirschfeld

๐Ÿ’ฌ
mergenthaler
mergenthaler

๐Ÿ’ป
Kin
Kin

๐Ÿ’ป
Yasslight90
Yasslight90

๐Ÿค”
asinig
asinig

๐Ÿค”
Philip GilliรŸen
Philip GilliรŸen

๐Ÿ’ป
Sebastian Hagn
Sebastian Hagn

๐Ÿ› ๐Ÿ“–
Han Wang
Han Wang

๐Ÿ’ป
Ben Jeffrey
Ben Jeffrey

๐Ÿ›
Beliavsky
Beliavsky

๐Ÿ“–
Mariana Menchero Garcรญa
Mariana Menchero Garcรญa

๐Ÿ’ป
Nikhil Gupta
Nikhil Gupta

๐Ÿ›
JD
JD

๐Ÿ›
josh attenberg
josh attenberg

๐Ÿ’ป
JeroenPeterBos
JeroenPeterBos

๐Ÿ’ป
Jeroen Van Der Donckt
Jeroen Van Der Donckt

๐Ÿ’ป
Roymprog
Roymprog

๐Ÿ“–
Nelson Cรกrdenas Bolaรฑo
Nelson Cรกrdenas Bolaรฑo

๐Ÿ“–
Kyle Schmaus
Kyle Schmaus

๐Ÿ’ป
Akmal Soliev
Akmal Soliev

๐Ÿ’ป
Nick To
Nick To

๐Ÿ’ป
Kevin Kho
Kevin Kho

๐Ÿ’ป
Yiben Huang
Yiben Huang

๐Ÿ“–
Andrew Gross
Andrew Gross

๐Ÿ“–
taniishkaaa
taniishkaaa

๐Ÿ“–
Manuel Calzolari
Manuel Calzolari

๐Ÿ’ป

This project follows the all-contributors specification. Contributions of any kind welcome!

Project details


Download files

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

Source Distribution

statsforecast-2.1.1.tar.gz (2.9 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

statsforecast-2.1.1-cp314-cp314-win_amd64.whl (601.6 kB view details)

Uploaded CPython 3.14Windows x86-64

statsforecast-2.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (502.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

statsforecast-2.1.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (470.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

statsforecast-2.1.1-cp314-cp314-macosx_11_0_arm64.whl (428.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

statsforecast-2.1.1-cp314-cp314-macosx_10_15_x86_64.whl (439.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

statsforecast-2.1.1-cp313-cp313-win_amd64.whl (588.6 kB view details)

Uploaded CPython 3.13Windows x86-64

statsforecast-2.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (501.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

statsforecast-2.1.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (469.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

statsforecast-2.1.1-cp313-cp313-macosx_11_0_arm64.whl (428.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

statsforecast-2.1.1-cp313-cp313-macosx_10_13_x86_64.whl (438.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

statsforecast-2.1.1-cp312-cp312-win_amd64.whl (588.6 kB view details)

Uploaded CPython 3.12Windows x86-64

statsforecast-2.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (501.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

statsforecast-2.1.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (469.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

statsforecast-2.1.1-cp312-cp312-macosx_11_0_arm64.whl (428.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

statsforecast-2.1.1-cp312-cp312-macosx_10_13_x86_64.whl (438.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

statsforecast-2.1.1-cp311-cp311-win_amd64.whl (586.5 kB view details)

Uploaded CPython 3.11Windows x86-64

statsforecast-2.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (499.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

statsforecast-2.1.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (468.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

statsforecast-2.1.1-cp311-cp311-macosx_11_0_arm64.whl (425.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

statsforecast-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl (433.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

statsforecast-2.1.1-cp310-cp310-win_amd64.whl (585.2 kB view details)

Uploaded CPython 3.10Windows x86-64

statsforecast-2.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (499.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

statsforecast-2.1.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (468.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

statsforecast-2.1.1-cp310-cp310-macosx_11_0_arm64.whl (422.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

statsforecast-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl (432.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file statsforecast-2.1.1.tar.gz.

File metadata

  • Download URL: statsforecast-2.1.1.tar.gz
  • Upload date:
  • Size: 2.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for statsforecast-2.1.1.tar.gz
Algorithm Hash digest
SHA256 3b4c91ac4e2a51a614596226df3cb210f99a152601f8235e0459248d05a42045
MD5 87bdf97287bbe93783e4eb128d41ea37
BLAKE2b-256 a86f25a1874c72d68c84a3cce1920fb29819090d8276ab9d896cbdebdfa68923

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1.tar.gz:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b00906992bba9c1ac779bf414801ad7f6df59754a1ab12c2869b1bc04de2cd0a
MD5 f108e34a768e6b15900662c718a60978
BLAKE2b-256 643afeef6d3772b906ec033a914cfae7652f6c3154c1a5ac4cf94905db2d7542

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp314-cp314-win_amd64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fce69a9ba74adf4ad8b3a48071dae9e50bc8313a30380ad20bc723e31cd6f58c
MD5 4a48497604d86baba15d731ac617e8cd
BLAKE2b-256 5c71b9b3c01c19ebad53d47f0b3be82d18976ab66293445dff4dd1e36ae50418

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2fd5f52d9d396027236af4152317ce3eac7c1c5f4c2b01248da10a74a193e0e2
MD5 5401934c2523667c50d1d0e85955d7b3
BLAKE2b-256 2a9d683e32ded2550ec81e54a2e838965d34ae4a2dbff6b82166ee474b5a1f27

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3393ee930dc49a80649869340c6b549bff92c399595071c6bbcb512d44d525c7
MD5 303c3968f7dcbba7ba96ac08bc3e057f
BLAKE2b-256 6cc865f891a745b0496053d34ceb2086be0f61ff575d89ec37e847d9300e95a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a063096f9403b36f94975e1676be1aff63b620a3e71c91e1dc910813edf80684
MD5 949b0611b271465ae343ecff7e1bdf39
BLAKE2b-256 3f62ae74c47e684eba0dc2d6c0a7c161be01957651d07a8a79488ce8682687cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3275a96605ef687a5be73af8423a8499240db54f7c6c173a28c259faf4e99176
MD5 e4b3968bd987463329ca88fd94de7740
BLAKE2b-256 ff168552b07cef2326d4f72455de4b3a7defa2ab21943790e416bb60e8afcf4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp313-cp313-win_amd64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e160795172f33371d1a5976e817fa7d48c1a2e6aed956a672bb867e95504429
MD5 2dd6bd85e3b3993a03d58fd4d16d634c
BLAKE2b-256 827f66e188ae3e8d151356c52faa93bc621f41d55abbdcc8be855a14f3e7ffe8

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2010a8cdfae122164704a6f489c1997cd6526f6f0b751255df7a24902daa32b0
MD5 4ae5c90d177ae32fa696b6ae7d84f93b
BLAKE2b-256 60b2ba047837f722c506571846ba4af744fba92bc66ee7b33b40f1a760914ceb

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 964e7e6b1ae471972321519caaed6f758e7a841e2f001a1b51ee26ef7cbfb5bc
MD5 ebb77e93b41080a91073683ea146130c
BLAKE2b-256 ad705aaafcc4ee5d1eaef0e13caf2d84ea35785c9f2ddf4116bf903612c4b7cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 20a08e87dbec02dcdd05842655e70c4d8ba7ee82e168354a51da699a8cf337f5
MD5 c6484f00c732397359c42117ea79a2fe
BLAKE2b-256 d41b40c156d34b16d5fb6e0ad777d093ecd7f8196974f0ef394d22d386a09a1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e02982a9ad2d869450db35f5a531be5785ea89fa31e5be7f7af191540c018fe5
MD5 0b448c70f5412c7d5dc7e9ea3e8eef66
BLAKE2b-256 7ba8db1949f53a93b0936fb9569b9bb866440573047abb642bda18a1dfe84b40

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp312-cp312-win_amd64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7eb73dd44a31c7a117297216a77083c3bafdcd5a97308f64a91f7a6b25b7ea3
MD5 257ef9d7c3c3e0639dd7cab824515891
BLAKE2b-256 5c53361c4c23fc8599e5e0fbd5a195550924b4e7e969d232aa1ac7d2250fa401

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d79fae7b67ab6b18b60cc481fec1428d4519ce7c226fab3929faafdef1b6e87
MD5 778f604553b7db356dbbe150fa7144be
BLAKE2b-256 000479b4ec9feb8bc8ebc71fd03bd1a41358820ac2a9d1e6022df4bee51be88f

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e3e0f04b02e1bdd0c9ccb0609ca427dfe85b28c84e1c094ea7541ded91d824e
MD5 edde7369e9ea784d0319b55c0051bc17
BLAKE2b-256 6fd15f36465c801048018cc5b03d924997cda4f811b44cbb6242cd8cdb5e69d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 abc32f921665f882601c574ce42d0efeb8fb1a4f9d1e84bfe404de58bf8fcede
MD5 777967a12750edd7e627629bc3020c5e
BLAKE2b-256 b8f3d586c8fcfa7a846c7e9129a84a8c141668f5fa57953f7fc5184fe393ee92

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ea34924f9b028966520598fbb8a6b6ff009ddfb4c69d2e416e3ea2efc4735c10
MD5 bce0354d55ff97703c88e35427a34379
BLAKE2b-256 0af9e2b619a7f8f55cad906dd60082b914e38928210ffadc3a1d8fe9e5b44b40

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp311-cp311-win_amd64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dbe3e3e1035fdce505566e2ffd088c7cb72fcc4d87d6f6f07ec2a5eecee9d8fa
MD5 0bf0f13efd02467178d1ed238309b98a
BLAKE2b-256 a8f47ef400c588cbcb8023024ffcc3aab9b2a44acfd89a728a90e75394a66c5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01dd33b49221d795e467d6824198dee9d8ddc2f15726d208462c0361adb98c83
MD5 96ada916542b40dc278ff26c210d3a48
BLAKE2b-256 ef88be9f41668f762d8a9d41a48d433627e31aaf159a7162e52b26f65a34b632

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7747a6bfcff8d8c3dfeb137477510f7511cfa7bfd4a25eb68d86d65478099e4
MD5 e691757f6fb676731c963f279252fe42
BLAKE2b-256 376d346203b97c45768884e0bf0992b3748bde590b3ecac7a0ee968862ea3097

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b5212cff88c1cc85461dfc474bf23b7e32151138ee25c6c4a2af998b78406f50
MD5 e9ab0a12e3362d873c46210684be582a
BLAKE2b-256 8e0e3cf58ef231ecf7e7a548a44201351bd401c36f77e12db7cd5e0158bc938b

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3567dfc2b9b2b007ca3a28f45c453026e3cd4401ca478af6a94e70ada7d4c36f
MD5 9022ccd1259ad2249fb49aa8d1222322
BLAKE2b-256 42587bb69ce034b2151812a5ca7ffe50bd3a80db5080e6c400664d8c8dd55d82

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp310-cp310-win_amd64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a8f68b0dc3e1847405fac18d64527cbbdb5f6827852db36628cc298698157d6
MD5 00a14f9e9d2c3998f15bac757962121f
BLAKE2b-256 982dc5c5d201dbab2dbeb1e4676a390d8d8096af28b751b729bf659062db5ae6

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 784cb69ad701becd302af3c26555e08bb438d181f61b908bee4a8392e6883513
MD5 97c48bfd8309c74cb71e1243bc623538
BLAKE2b-256 51093ce58ffb37dbb4bab37d4436ec4d687eb61435d24d3f7d0fa0d7eb68e7a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6d919e216d111be0804f3e03216c523938a850cde18dfc7187311a3fa060444
MD5 d93600c1229a7a32ac773f3c4ac2aa05
BLAKE2b-256 f848f82cae03b1d057b4f465bc7f4569ba08c5870ec338e86f9086dc14c5eefc

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file statsforecast-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 54fdf64305ecfe00d71790f597481d3bbb2bc1c6827fdfb754c40a161e2dcf1c
MD5 559c128e08f56d89443c21765a3e0bc9
BLAKE2b-256 a429233f0d5fb8fca2b52762c0257fd93bc88b0d0cb9a8c5076c5ddb51b32cb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on Nixtla/statsforecast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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