Skip to main content

Python's forecast::auto.arima equivalent

Project description

pmdarima

PyPI version CircleCI Github Actions Status 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.7+ 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.0.4.tar.gz (630.3 kB view details)

Uploaded Source

Built Distributions

pmdarima-2.0.4-cp312-cp312-win_amd64.whl (625.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

pmdarima-2.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

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

pmdarima-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pmdarima-2.0.4-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pmdarima-2.0.4-cp312-cp312-macosx_10_9_x86_64.whl (666.1 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pmdarima-2.0.4-cp311-cp311-win_amd64.whl (614.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

pmdarima-2.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

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

pmdarima-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pmdarima-2.0.4-cp311-cp311-macosx_11_0_arm64.whl (628.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pmdarima-2.0.4-cp311-cp311-macosx_10_9_x86_64.whl (652.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pmdarima-2.0.4-cp310-cp310-win_amd64.whl (613.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

pmdarima-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

pmdarima-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pmdarima-2.0.4-cp310-cp310-macosx_11_0_arm64.whl (628.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pmdarima-2.0.4-cp310-cp310-macosx_10_9_x86_64.whl (654.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pmdarima-2.0.4-cp39-cp39-win_amd64.whl (615.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

pmdarima-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

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

pmdarima-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pmdarima-2.0.4-cp39-cp39-macosx_11_0_arm64.whl (630.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pmdarima-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl (656.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pmdarima-2.0.4-cp38-cp38-win_amd64.whl (615.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

pmdarima-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

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

pmdarima-2.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pmdarima-2.0.4-cp38-cp38-macosx_11_0_arm64.whl (627.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pmdarima-2.0.4-cp38-cp38-macosx_10_9_x86_64.whl (653.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pmdarima-2.0.4-cp37-cp37m-win_amd64.whl (613.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

pmdarima-2.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.28+ x86-64

pmdarima-2.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pmdarima-2.0.4-cp37-cp37m-macosx_10_9_x86_64.whl (652.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pmdarima-2.0.4.tar.gz
  • Upload date:
  • Size: 630.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.17

File hashes

Hashes for pmdarima-2.0.4.tar.gz
Algorithm Hash digest
SHA256 b87f9d9f5b7dc2ddbd053687c2264e26ac98fd4118e843c7e9bc3dd7343e5c1a
MD5 11c0f6c15fe0bc85777510fe1ff72981
BLAKE2b-256 3c2b3540b4af4f0a1593ee09fa20460d0f402b52aa76cf683f995555b7f64abd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pmdarima-2.0.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 625.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for pmdarima-2.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a8bf7913bdbd0e286489b2111080a0f51f5d9d3ee5e05b7011a691207047ddcf
MD5 3db8ce8840c2ba37ac326f6e12e2ee28
BLAKE2b-256 cf1c83b87c760144281f0dc4df43578587b59fe3c38f9d660b575adb9480a11a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8790bff665a5ebaa36ddbbfd0e8ea51ad2e5809270dc74d462d5c2498b26220f
MD5 8f28c02a441de00e0b150c1bf1838285
BLAKE2b-256 54ce25b655b60070ee31f7005b420ac5d89821623e6b59b94adb0045ef685c08

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d837bc00266a234d9292914f19a67e04ca8361d9c309b70fc8f16c1ed863551
MD5 05128fe953e2b7421bb9a40782b81909
BLAKE2b-256 6dfa914ae6881ecb1a8dd58ac3c89fcb8d480b036b4f7bb128d1929943d97bd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e215ec6130b917843d26e0698637f976e4a6cc9dbd521bf44547668d08f058a
MD5 80b90ab085096ea43f3d2e29e4c70deb
BLAKE2b-256 7b9a40fe3ffb20491661b34a5f62cad1347ea9401100c5fe9a499dd61383828a

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62a4ff308fbb5074a66c0877ba6b472d0fc406cbc0b5a2dba7e8fa800c9dd8ca
MD5 28a4d4b6b030f12beecc67d2886ff825
BLAKE2b-256 a25d8dbe5ee4a225bf7eaa233893565dfe619342b37c97951a2ab141bdf4b185

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pmdarima-2.0.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 614.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for pmdarima-2.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bc594dd981bca5217b4448c96e82dbd60553b07263517a5cb0510b4bfe66ded1
MD5 a9d9901bb68a45c14b71cf9983edbbdc
BLAKE2b-256 acf86c9364602b13f0dba129b53acd1344859690911a4d5021560d9fd6aa087f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 46677b68efffde66aa1291799b39b91420961967fa2b6e041e26bb263782d38d
MD5 70edbb15ea5f52abb4decfca8c708054
BLAKE2b-256 351ce41fee54ec90e1e3c4ee7871710b8c370fa02a54cb09979aa140e0abec16

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8022484256492bc425f0053b3a0346ab0a877f0f668664be738fe07f6b423c08
MD5 b2141d0cee5cf7bc94db89b65c8804b0
BLAKE2b-256 74061546fd46b95a2d4be304e989d063277a095db2a738e76570a678aabc78cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78e815c51074411bbe8433a912af4cc8dac394d9330cfedf57dd5ce08efe4a65
MD5 b2a095d0d99737a0fffe5c51ffea107a
BLAKE2b-256 40e578afab229ccdaf6b947036440799dbdf88e2cd632e2f96b81f32de8aa05a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8d961c99b445e53eadf6627c61bf800f403bd247b7ec2f62c6dfe8a0b1bcbf0b
MD5 dcb24d91fca5f4fb9b0b06078325fe4c
BLAKE2b-256 f924d61c400452bed35dc8ccd183bcb2a008154f855b55b7a61cb0fa48872bbd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pmdarima-2.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cbde33812c37f441ba70d9e7b0479c758d56ad77a8dcbdead1fb8baad9aee806
MD5 eb17d63d566b446acf98bc02fb1514e0
BLAKE2b-256 cb700d357e09b452088952eb6a137d7f7e1fd600e24fccd33b5add39020e3a85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 165bdf787f5dafd5faab543d20524413b765d9cb6f020f0e1846551e7678414a
MD5 89a145976d216a3d1fa47b9e613cd55a
BLAKE2b-256 ec2be7d18360d56396b62781ba4616527af49244d4bed51f0780646fa3953cc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ccd9e2186ba1ef45006f6c88dc9ecd6121ddb8914114bebcfa0d42899b40ced7
MD5 c895df3c5af1494649244aba679ad0e0
BLAKE2b-256 416cf34496321649d9fbf1d9d4a65ea79db7f293b8b003e38804cc74ca964ac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9a839a477100331c47aa8a841c198ecb0b3fab4aff958622d31fec86d2aea76
MD5 3650e5b7eb41fe0efe6d1b0f3ed43e54
BLAKE2b-256 e76e56d2dfe393d2934ed4067b5cf84cd60a6bb4993cb50c45c2660c251108ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e6c16672e0f122e63ab1d7282a362c762783264a07636bbc9d4ae3d58ac7605
MD5 95aba2787d6cab8ec65c8962418ff195
BLAKE2b-256 63905bdc90758dd9cf4c95b7c3f1b259654d521bad1a10177b0f02af2387d1c8

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pmdarima-2.0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 615.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.13

File hashes

Hashes for pmdarima-2.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 13ba7061d4e9d48f21e1c393bfaa3d6b31f60a8c97ddbe8d455fa675c594f9e4
MD5 4ed61dd6cd3fc6fa461653cf3da02a52
BLAKE2b-256 fea479d694daa45b86df0c87d17a16632c8f1f65e6bef84f1e4c6be5a24be38e

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a03936d681c720b0e44565d099de2619b762cb9d443f3043de9a78888aff6bb2
MD5 f4b5240d9ae2778075a48264bdb9824d
BLAKE2b-256 a214cd7417d90312ad6de4e5bb48d98f0b89e77bb427f5b80495074ab25cd13b

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db842d97905b171c867aae1a492b8c958ec1bae987c3ee41c561a06d99a19efd
MD5 7efdb7172275e5d60e3a3cd45839182e
BLAKE2b-256 1514228c06d7b0260f4d758de7b565a43241187b5b6e65a19e409ac036813122

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fe612384e4989f010dacdefbff874231f5b7351dfb84bcbfe9ed8d718fc4115
MD5 1650ccca7075b9db0ae4b1ce14085161
BLAKE2b-256 7f0f4b0b7f6f363d8a6d92230be78d5a14a97834e29d24c9a264d24bb95a092d

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e0e3c90e7a91b44599f08cd9c62880466860e76bd1b0ca2d2ff8e72834a1a7f
MD5 cc9d4c5606f455fe65c16f9f13ded55b
BLAKE2b-256 e7c7dcbf0c80920d8674970fef4e89bde7dc439a318a6180fcaa6bd65d8420ef

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pmdarima-2.0.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 615.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.10

File hashes

Hashes for pmdarima-2.0.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c1213f3fa1e3ced9796f4092f9bd4be1881205f77bc2f5a1494695134a92000e
MD5 1cf8efb92ce6cc1d0d0b2130320e50d7
BLAKE2b-256 a394af13b58081670aa16a82ff6b062032d50994cae87cc806c40f1c9c97a5e1

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9ead43510adfe3c0d4000e37427bfcf11ba6cc3b26091368a847c5da010e052
MD5 62d7f812769859b8bfc772b4251d9f62
BLAKE2b-256 71f1a45739f7a95faaabc01282f035330d4821d2f3c7757a0a25dce79d548947

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab1ee166f511d2497d6b357bf0cac84326efff25349eb777aea5b030ed6bf8bb
MD5 848078daf9af2643386f23eb63eb9a8a
BLAKE2b-256 005f600e92b4c1da27bb58a2b5501b9bd165801597fed7238a2a5215a6180932

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 670ca1f93ed4f8239e7fbd7d1dd156108899e15e8fb0717b2b3fa605fa6ace35
MD5 df11b4b152e50956751c68729fd7e7ca
BLAKE2b-256 7cafb2d39ae748d358e5311198e2257ec70074f744db6e618ed7bb9def23156b

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec865e8fb07378c470f3e41a77d6705875a674cefbe6c0185e9bc070e642da5c
MD5 3ec0b924fcd7277b44a9c4e6bccef1d2
BLAKE2b-256 876950b56189889b5569c91ddacabad36ff3e64e9ca1c1ce553affc242a71abd

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pmdarima-2.0.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 613.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for pmdarima-2.0.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 776e21e076393c6fe86895ffe71e6769c9b3fe0dffb92d6f6558657580cf0a42
MD5 2e4a27f0c3bd077a234debb53815a078
BLAKE2b-256 fb1ae64357b2a283bb3969827a27137cfbd0e54b64baf59810379e625e3f2211

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73060d28ffabeae7374ab48ba7882b29ae6998de3e3e34f5484c64e0baefda0d
MD5 ab24b112c26927d148d38f29b13f4d90
BLAKE2b-256 31d5871fc78ddd59c44660c6438c9eb5a164c20b11a5ad72ecbab07756d29cd1

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c1ed01cbb399d9cdbe3f12f2ef505a144826769ec3ad75f6075cadbe8447a13
MD5 29debda74a3f6f29c5dbbd5fba790f6f
BLAKE2b-256 4e0dfcd050525490b31f48f50e1cadc676f3121848bf940484cd3fe408cc4740

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pmdarima-2.0.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5bce63dca165948a2311eff0c200e57370829855fce6e7d3fe930497f2f9fc04
MD5 f564341a692b85db3c06c8fcaea7b22a
BLAKE2b-256 7c33fbaf61d7116b8b5196eeea4146c02074e33ee3cf36daf508db483e74ed1f

See more details on using hashes here.

Supported by

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