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 using numba. 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 with this 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.
  • Compiled to high performance machine code through numba.
  • 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.0.1.tar.gz (2.9 MB view details)

Uploaded Source

Built Distributions

statsforecast-2.0.1-cp312-cp312-win_amd64.whl (277.2 kB view details)

Uploaded CPython 3.12Windows x86-64

statsforecast-2.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

statsforecast-2.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

statsforecast-2.0.1-cp312-cp312-macosx_11_0_arm64.whl (298.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

statsforecast-2.0.1-cp312-cp312-macosx_10_13_x86_64.whl (313.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

statsforecast-2.0.1-cp311-cp311-win_amd64.whl (276.5 kB view details)

Uploaded CPython 3.11Windows x86-64

statsforecast-2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (354.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

statsforecast-2.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

statsforecast-2.0.1-cp311-cp311-macosx_11_0_arm64.whl (299.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

statsforecast-2.0.1-cp311-cp311-macosx_10_9_x86_64.whl (313.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

statsforecast-2.0.1-cp310-cp310-win_amd64.whl (275.7 kB view details)

Uploaded CPython 3.10Windows x86-64

statsforecast-2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

statsforecast-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

statsforecast-2.0.1-cp310-cp310-macosx_11_0_arm64.whl (297.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

statsforecast-2.0.1-cp310-cp310-macosx_10_9_x86_64.whl (311.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

statsforecast-2.0.1-cp39-cp39-win_amd64.whl (272.7 kB view details)

Uploaded CPython 3.9Windows x86-64

statsforecast-2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (354.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

statsforecast-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

statsforecast-2.0.1-cp39-cp39-macosx_11_0_arm64.whl (298.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

statsforecast-2.0.1-cp39-cp39-macosx_10_9_x86_64.whl (311.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for statsforecast-2.0.1.tar.gz
Algorithm Hash digest
SHA256 dd856ad584f4d561b233da0db2b8e52b3a5cfa27109b0e0cb780293a836ad0b0
MD5 5b8a1714d3939570cd9899f0f402901a
BLAKE2b-256 b95b7fbf787cc947ff358d3a4ec81911f0386aca66d643fdd5128f599a901479

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.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.0.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 61e0526cba8f5999268a6a6a43740d1e0f9923bb1ff7f54cfac90119bff08883
MD5 3a89b23cf25359ef58fe1e16f2373ee7
BLAKE2b-256 db8c7d8575a1cc09e739a4f66b349a4ef80f7a53e4eb18ae8b290315a6bb7eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.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.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a191eab019140946f267a872fdeae8f61a3b27cfd69e7150e93c880ef90f75f
MD5 acd809e67aeb8b37a2fa14ef88f2046b
BLAKE2b-256 c5c2a0819c3f4f618854a266e01c2316d247466a1d577809bc590657beb65bd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b8d6dc9f832658e4e17ee2a2d4d9553ce3c8b22766536fe28de9928ed8c0c64
MD5 cd138c2ee785a35d3e4e983ea6e0f792
BLAKE2b-256 a4defe2fd9301101a2a96578295ae0b713d58c04161a7a68f0daf8aab40d1df9

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82ebc9cc5cb9fcad2a92adf7f248e509f5ac9b1402be0e35b50ffa1bcd4b74e2
MD5 105fd1e91006591347037893d633fcc4
BLAKE2b-256 b55f5b3c02b27c37cc0085285a431c2c5c4893bb4c209516b7921360a28cfa70

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.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.0.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7d3c5a41116e42a657510db905185b9faff152bf099a059f5aac4acaca4e5d39
MD5 bd03eeb106ebc0b529e6049a8db93487
BLAKE2b-256 5e984b99d0638fa3bd1ebb7c5aec452bc8cc25e83588d6b850f5557a850376cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.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.0.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d6198030eeb48c02ebe43075830a638155e96ef748b106f9bd8703fe6951e11d
MD5 c4b2bf59985680965e3e9fff35db7d58
BLAKE2b-256 597993136f585dc9953ea3895d5954df69ba6a722beae4cf02ce00a1b6281d9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.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.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8855e5a950ff45c53da13c5febbfb47d6b946f8ca34d70b052e2ce7942263731
MD5 09e15d630acb2e14ef670391522c428a
BLAKE2b-256 40af4ea162487e03f722d6d277ff409a645e9528293d8e5ca543b3a12fa2034c

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 826f3549d1f2c0ef76c7976619381f5a1f1dc504b2fbfbccf9f88e89362cb125
MD5 e04a49fa0ec7ff12fec3ab40fbdcefce
BLAKE2b-256 13ce60169b3b576f984cf1b51ec5ed623bd209d19ca79be85a1e67021ca7983e

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec84068d8df8949ed499e73d0967daca023bcb5b385ad741a038f21f49b81f68
MD5 df2f310aab1480d74bf739c94425772b
BLAKE2b-256 39b6a49b13415f0b54f65f384a9d45354912592f11724331e40068fd8b19d3c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.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.0.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f26cb574db38f3ad5f2bc0a97126aa5b0b6b831e871bfb83dec352233737dd6a
MD5 9d7dc662cfe6ba61f39f578b930046f8
BLAKE2b-256 b0ae62457c888696a723f7cc9de1d02b7ced1d8179d722d6261f7547de0bdbf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.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.0.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0958f1627a4fd58e34c6fdc913bccf9b2dbbcddc9405dfe243a0051e108a7371
MD5 fdd91ef7139c7829dc723a6f6911a293
BLAKE2b-256 ce94232b8473396e516d25285d0ae61e8ad30c3ade6b065afaf1c30ad991bd1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.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.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44bf8934d9ccb3605649a60ab639d3e3159878d334a68fe538523e53270bb52a
MD5 6041b819855e3fd46ce9e5a2d06784ab
BLAKE2b-256 97d108457d9e6ada8dd201e602a8ff54604f086b5f5b8aadc01a636366a95b2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 966f17711077c70586f40f7f3fecc03400fb27b7413f9d1ac89a72c7d196a408
MD5 fdbef1c6591d64e93a07566bbfd03912
BLAKE2b-256 8cd454f084abb98a951e321b2f86195914ff9466e772fed1f5907f2430527011

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4991c88c901b2d14a383616e59d64e950e7ab277d3f9748b55145f06c409cf5
MD5 5bde3d7f8cd0fe98d97c8a6880758d04
BLAKE2b-256 00e3d8f3c7c9360e718d066d3fb3608508cd71301b79a069f9582e85e2c91b24

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.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.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6839c3c033d7de25ab71d95e7e813830ea4026d2eeb88e28421022eed48a702
MD5 d2a853701f06060aa8b65eb7fc9f530d
BLAKE2b-256 b44b423151a6382642c2989a3f91efba035ce2fd09de8fcfd0f03f32c2f00667

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.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.

File details

Details for the file statsforecast-2.0.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f6de4e62f6693a7f2e817e322b608ba0ff5f0e83aa18c9477dca5ae5a5e22eef
MD5 0c74f4403bef0f2a2b5581b2e79acc78
BLAKE2b-256 586624f1b579eee58d5d5746c692960f05b4b5f9616ad508d74ca08c7b05b6ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.1-cp39-cp39-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.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 537a488a2f1d3b955882c951345051dcea60a266ab8bdec43d7c0e2dc510e778
MD5 bed9c763e7e4fcb7a53c3a99b44ea46a
BLAKE2b-256 25b3bc541fcbd7505d7c7afeffc01d5c8c4d556ec6efac0627ca08f8cc4fb881

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a67b4e17080b836d6a4cf15c33dbff3dca96b5338caba81145d6248eb8fe9cba
MD5 1285a35a3216aded136c91c70a3a061b
BLAKE2b-256 a9ba679e4b86eb390c04b90cb3d56c4129d1d3e5c23be96bf7c589b2506bdad8

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_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.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7d55864b845df6ab89f27bc255e72b5000f064003a8fe0279447314286fde43
MD5 22e3c8ff75209a7469d1e7a17d79f936
BLAKE2b-256 92d234b766fdc3ae8bf9598ef2a796962f1520c90202d09394e802bdbefd6f57

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.1-cp39-cp39-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.0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for statsforecast-2.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f76c8b2594dc0752aebeb5a45dbdf43229e9c4efabef85daedfe0a7ec5b72f49
MD5 7eb3fe79671b639b1f928aff396ea542
BLAKE2b-256 5e0f18c87ec25ddf29430a487cdddca0b35b876fb5ad17d1ea9920cf422f4d57

See more details on using hashes here.

Provenance

The following attestation bundles were made for statsforecast-2.0.1-cp39-cp39-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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page