Skip to main content

Python's forecast::auto.arima equivalent

Project description

pmdarima

PyPI version CircleCI Mac and Windows Builds codecov Supported versions Downloads Downloads/Week

Pmdarima (originally pyramid-arima, for the anagram of 'py' + 'arima') is a statistical library designed to fill the void in Python's time series analysis capabilities. This includes:

  • The equivalent of R's auto.arima functionality
  • A collection of statistical tests of stationarity and seasonality
  • Time series utilities, such as differencing and inverse differencing
  • Numerous endogenous and exogenous transformers and featurizers, including Box-Cox and Fourier transformations
  • Seasonal time series decompositions
  • Cross-validation utilities
  • A rich collection of built-in time series datasets for prototyping and examples
  • Scikit-learn-esque pipelines to consolidate your estimators and promote productionization

Pmdarima wraps statsmodels under the hood, but is designed with an interface that's familiar to users coming from a scikit-learn background.

Installation

pip

Pmdarima has binary and source distributions for Windows, Mac and Linux (manylinux) on pypi under the package name pmdarima and can be downloaded via pip:

pip install pmdarima

conda

Pmdarima also has Mac and Linux builds available via conda and can be installed like so:

conda config --add channels conda-forge
conda config --set channel_priority strict
conda install pmdarima

Note: We do not maintain our own Conda binaries, they are maintained at https://github.com/conda-forge/pmdarima-feedstock. See that repo for further documentation on working with Pmdarima on Conda.

Quickstart Examples

Fitting a simple auto-ARIMA on the wineind dataset:

import pmdarima as pm
from pmdarima.model_selection import train_test_split
import numpy as np
import matplotlib.pyplot as plt

# Load/split your data
y = pm.datasets.load_wineind()
train, test = train_test_split(y, train_size=150)

# Fit your model
model = pm.auto_arima(train, seasonal=True, m=12)

# make your forecasts
forecasts = model.predict(test.shape[0])  # predict N steps into the future

# Visualize the forecasts (blue=train, green=forecasts)
x = np.arange(y.shape[0])
plt.plot(x[:150], train, c='blue')
plt.plot(x[150:], forecasts, c='green')
plt.show()
Wineind example

Fitting a more complex pipeline on the sunspots dataset, serializing it, and then loading it from disk to make predictions:

import pmdarima as pm
from pmdarima.model_selection import train_test_split
from pmdarima.pipeline import Pipeline
from pmdarima.preprocessing import BoxCoxEndogTransformer
import pickle

# Load/split your data
y = pm.datasets.load_sunspots()
train, test = train_test_split(y, train_size=2700)

# Define and fit your pipeline
pipeline = Pipeline([
    ('boxcox', BoxCoxEndogTransformer(lmbda2=1e-6)),  # lmbda2 avoids negative values
    ('arima', pm.AutoARIMA(seasonal=True, m=12,
                           suppress_warnings=True,
                           trace=True))
])

pipeline.fit(train)

# Serialize your model just like you would in scikit:
with open('model.pkl', 'wb') as pkl:
    pickle.dump(pipeline, pkl)
    
# Load it and make predictions seamlessly:
with open('model.pkl', 'rb') as pkl:
    mod = pickle.load(pkl)
    print(mod.predict(15))
# [25.20580375 25.05573898 24.4263037  23.56766793 22.67463049 21.82231043
# 21.04061069 20.33693017 19.70906027 19.1509862  18.6555793  18.21577243
# 17.8250318  17.47750614 17.16803394]

Availability

pmdarima is available on PyPi in pre-built Wheel files for Python 3.10+ for the following platforms:

  • Mac (64-bit)
  • Linux (64-bit manylinux)
  • Windows (64-bit)
    • 32-bit wheels are available for pmdarima versions below 2.0.0 and Python versions below 3.10

If a wheel doesn't exist for your platform, you can still pip install and it will build from the source distribution tarball, however you'll need cython>=0.29 and gcc (Mac/Linux) or MinGW (Windows) in order to build the package from source.

Note that legacy versions (<1.0.0) are available under the name "pyramid-arima" and can be pip installed via:

# Legacy warning:
$ pip install pyramid-arima
# python -c 'import pyramid;'

However, this is not recommended.

Documentation

All of your questions and more (including examples and guides) can be answered by the pmdarima documentation. If not, always feel free to file an issue.

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

pmdarima-2.1.1.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

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

pmdarima-2.1.1-cp314-cp314-win_amd64.whl (723.3 kB view details)

Uploaded CPython 3.14Windows x86-64

pmdarima-2.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (688.8 kB view details)

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

pmdarima-2.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (674.0 kB view details)

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

pmdarima-2.1.1-cp314-cp314-macosx_11_0_arm64.whl (594.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pmdarima-2.1.1-cp314-cp314-macosx_10_15_x86_64.whl (603.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pmdarima-2.1.1-cp313-cp313-win_amd64.whl (711.9 kB view details)

Uploaded CPython 3.13Windows x86-64

pmdarima-2.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (688.9 kB view details)

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

pmdarima-2.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (670.4 kB view details)

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

pmdarima-2.1.1-cp313-cp313-macosx_11_0_arm64.whl (591.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pmdarima-2.1.1-cp313-cp313-macosx_10_13_x86_64.whl (602.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pmdarima-2.1.1-cp312-cp312-win_amd64.whl (715.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pmdarima-2.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (689.1 kB view details)

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

pmdarima-2.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (670.4 kB view details)

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

pmdarima-2.1.1-cp312-cp312-macosx_11_0_arm64.whl (593.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pmdarima-2.1.1-cp312-cp312-macosx_10_13_x86_64.whl (604.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pmdarima-2.1.1-cp311-cp311-win_amd64.whl (722.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pmdarima-2.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (698.0 kB view details)

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

pmdarima-2.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (683.3 kB view details)

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

pmdarima-2.1.1-cp311-cp311-macosx_11_0_arm64.whl (592.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pmdarima-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl (602.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pmdarima-2.1.1-cp310-cp310-win_amd64.whl (719.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pmdarima-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (665.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pmdarima-2.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (694.8 kB view details)

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

pmdarima-2.1.1-cp310-cp310-macosx_11_0_arm64.whl (593.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pmdarima-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl (604.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pmdarima-2.1.1.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for pmdarima-2.1.1.tar.gz
Algorithm Hash digest
SHA256 b8d2a0c0cd3f7ec90825fa25a917b5f66073de58033511de015a9e76e4e3d8f7
MD5 c4a2ad901b3b93d1f718cade02b23c99
BLAKE2b-256 e562d70e2ec79b2c3576bcbd08367f4843ae7b7bc3ef760fda2f059e18f9daad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pmdarima-2.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 723.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for pmdarima-2.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 320942588f7d32fb8b38fa648c46a60a4e43f87d1ceb722e796d4d456997069c
MD5 85c761369c1eb5d702d56c62ceafa6a3
BLAKE2b-256 d98b38fd9f3723c814369cc50bff8bd7ea63ae3a92316b9a033fcc5a86f3044b

See more details on using hashes here.

File details

Details for the file pmdarima-2.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7e0080637d9d9a21687dec3062ad512f6ae1ee47abd9f47770d3782510321d8c
MD5 423ed64b47bf31f6575ce09383a6447d
BLAKE2b-256 01ed94646c2fc61c470daf69b41c2432d08d0e568473791eeba1eb9e7fd3a555

See more details on using hashes here.

File details

Details for the file pmdarima-2.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32812a95237bb5f1b50fe630e71d4349141fd171193e8769b30b81989fecd5eb
MD5 a0077705f49e6ee2fdf99b572911ce5d
BLAKE2b-256 967d7b04ed19570fe2088460f23d158fa3df17868717b9069852585ed583bb91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71eb1c5586f3f06e6ed9f3649c393ef02d039daa7bbf966793dc99977beb0254
MD5 4ce61b878a1864dc6d4e1ef2b4414030
BLAKE2b-256 9d34c84e668fad0a6f02ab55a7964346bb962c2b31c1d9f1044426635ad8bbe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 76d1120cd0497c5c7e1cc566ff771d82b7059f9202c51fd60e932d7f525aa693
MD5 d08c963f085c7267c435841eb86d9ade
BLAKE2b-256 582f11594836cb842325dc385e4865dac79758afae1ca77c29f9ef7bbe5f7f92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pmdarima-2.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 711.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for pmdarima-2.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f68bd04ac170b0463de308b2b0dccae4696e113047caf078b17fa84273ece75a
MD5 102c15d92879d5f1aeee34e420716b8b
BLAKE2b-256 cb21c4bb24c001869a17d35414380574851de60e55d601203e88da3c8c78f7da

See more details on using hashes here.

File details

Details for the file pmdarima-2.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b4df5236a8be6e4995cc922573a8cee93f306c1576681b290bbfda3d4c9f6c50
MD5 13230e05f9f523e379ba2330e2e8fd03
BLAKE2b-256 c7e022c7259125343e5ccbd574092116a3ccadbf58a84023ef32f4222a321d5b

See more details on using hashes here.

File details

Details for the file pmdarima-2.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2e74ff51489c5a68108422c0db77e298ec297abaa99ec3ae7729596ae5951c9
MD5 e8cdace125794b78cd98995c3087fa5f
BLAKE2b-256 3db095944591dc77518998901c28442d09aa79e865bad642f6774e7b8fd9e59c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30e417ead2aa21b0148d082a9b6a2b46c88fef6b8ed97fca9e8c796ee43e16be
MD5 fae8b2074a52dd13846b0a4c5078f303
BLAKE2b-256 29abc63ffa3c53333ef418cff88cee6518b675d255f51bc7c0d7b3067eaae00e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 57c20e85d97f639fa4376cef0a0d1a6ba12c11eb5629b0043267ec1d0d1c391d
MD5 69951a96a1c42acb12cf67931214e436
BLAKE2b-256 6b183c21fd8796d07303d3a91001aa32163b515e672d73cf9e0d60f07993a9ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pmdarima-2.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 715.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pmdarima-2.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7ffe658df9f6b2d60150d439001e95de1a82b6c0121174fd9d1a1a131b6bfb89
MD5 74a6f4ead0a2f148da3c618c37cdbae2
BLAKE2b-256 5267fdc6ab115c76c27d2efadb6f059c0a38262399b43174742a2687b31e620d

See more details on using hashes here.

File details

Details for the file pmdarima-2.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 512fa4c5c34328e0ec1658640c04f8af6eddccae784f28630afa8e4beacdffd3
MD5 af9b7edc5b8a8c8c00d1a0c995e8599b
BLAKE2b-256 302b08017984601dc4c4b85a0075685ed7eced2a811c00ec9cf372c0bea0787a

See more details on using hashes here.

File details

Details for the file pmdarima-2.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef25387a5ae2a1bf1a86d3d0a2009ee6d291b4129a5d578d8d42e3f18ae6c109
MD5 54dc05d6f8b4fcf44a04902ace160027
BLAKE2b-256 cb1fe869861148c689472254c6c8519be5d9aac26056cb9e2549db3396078ae6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4218d71dbd2010d72bda00092b0e7d167d60d7ce1f44463a9a8869a2fae2eac1
MD5 b86d6a50317017e6d7e5874f0900e973
BLAKE2b-256 5e2cf8716b209e0dcfc7b8e6c953ca1c020b53348741150e2fdbbe471b4b4633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f2c639f114c247a90233ec9a8f076a65765cfc940440316525c44e8e581d5820
MD5 9cd7eac10067193a425be18525cb8562
BLAKE2b-256 7ac43cb96943ab91c054fac5078bbc788fcb6031e80301e13538a6d0748a6f2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pmdarima-2.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 722.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for pmdarima-2.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 31f1a48517849fcd52a5844d6605f0c2acf0a8bf6fadffcc5fdabb08d8201328
MD5 4594f041dc3719a533530b743918f6b4
BLAKE2b-256 f1637550687289f41ab3b58223841e47a0454df923bf76304b6ca09d29b4f169

See more details on using hashes here.

File details

Details for the file pmdarima-2.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8148ff1f4cdb9a07164247eb3e6dddc1baef6e226d38528bd3fdf5d160f8dee
MD5 1bf8205edf19be743a1f9681a664192b
BLAKE2b-256 bdcd9ca0cdd89e4122c759a59a10c26b60947582764132137be1d8231c059544

See more details on using hashes here.

File details

Details for the file pmdarima-2.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 750782537b7fbf09dc29f82c88d0c3afd97c0567eca0dc1054692b5996dea4cd
MD5 62ca44b1e3ff942b1639982bc9fb3ed0
BLAKE2b-256 009ae6777e2fe6be775643c1b51ed1b54f8ef9918946ce31ae8559047161b581

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e817db74d7c749d6c68fb5482b90255a3064bc924b18312d594de1bcbd03536
MD5 014c8019aa88bad1c799836131af2ec2
BLAKE2b-256 5489a0cbe5a993f91d2ad41634a6d559181913245dab12cfb1635fed226c266f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c8b2776edaedcc63ceddfcfb1e6240286b3d7f027500011fc6989764aebd0510
MD5 fe149284063bdec1ba02b4007039d924
BLAKE2b-256 e1a50de1399625e23f37383d599519e9bd17a4b62644882a82bdde2f718f8233

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pmdarima-2.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 719.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for pmdarima-2.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b038d14686a5af23e83c7ecc1cab0d2fa57c2445e1d0754d56ffdc6e85e9a955
MD5 7fbc39bf591e9231a7313f816f41e6db
BLAKE2b-256 fda9ed2bc65305ee99f77a08f6246c7cd675eb70418b1342030044fc21a1864d

See more details on using hashes here.

File details

Details for the file pmdarima-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a315609437523ced314c86cffbcb5d957d3b8850e3c8a9bfdb51e93c5b6b597
MD5 0368417dff271a3052f98312274e1f79
BLAKE2b-256 55070d7d76632473c14067744e81a2b72f060cb893ed2112f8cf16d547c4fb68

See more details on using hashes here.

File details

Details for the file pmdarima-2.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f80c1d4d9947d114807c49b0969e6cb0109c7d68917aaa1c5f1620694c40a33a
MD5 3d759a4f2aa3a6569d2428dc61c90b8c
BLAKE2b-256 c00c37a93970683866e85254d0b45a1b6fd8174635306d4322300f90a30ea9a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4639c9438bcdef98e984fd9b55224a5bf61589a1f5ae3ad539ce5e9e28fdb564
MD5 46e6ecf45679d9f2ff17832857af8e75
BLAKE2b-256 bc064cd4604b0fa2c58b32340072321a0a77146edbe1b7c09f45a440359e8adc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 df15ae4c646865f66158b2552b30f069396af894bbf8c59afaa0329b021aaf42
MD5 d85c59bd1ed66457b5fc5d8f353a1d9a
BLAKE2b-256 00e70e3680352915c8247f65dd5eaccf31ebe3dd82f1618eefff44ce16ea5f3f

See more details on using hashes here.

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