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.2.tar.gz (630.8 kB view details)

Uploaded Source

Built Distributions

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

pmdarima-2.0.2-cp311-cp311-win_amd64.whl (565.5 kB view details)

Uploaded CPython 3.11Windows x86-64

pmdarima-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

pmdarima-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pmdarima-2.0.2-cp311-cp311-macosx_11_0_arm64.whl (574.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pmdarima-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl (602.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pmdarima-2.0.2-cp310-cp310-win_amd64.whl (568.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pmdarima-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

pmdarima-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pmdarima-2.0.2-cp310-cp310-macosx_11_0_arm64.whl (579.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pmdarima-2.0.2-cp310-cp310-macosx_10_9_x86_64.whl (607.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pmdarima-2.0.2-cp39-cp39-win_amd64.whl (572.0 kB view details)

Uploaded CPython 3.9Windows x86-64

pmdarima-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

pmdarima-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pmdarima-2.0.2-cp39-cp39-macosx_11_0_arm64.whl (580.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pmdarima-2.0.2-cp39-cp39-macosx_10_9_x86_64.whl (608.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pmdarima-2.0.2-cp38-cp38-win_amd64.whl (571.9 kB view details)

Uploaded CPython 3.8Windows x86-64

pmdarima-2.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

pmdarima-2.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pmdarima-2.0.2-cp38-cp38-macosx_11_0_arm64.whl (573.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pmdarima-2.0.2-cp38-cp38-macosx_10_9_x86_64.whl (601.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pmdarima-2.0.2-cp37-cp37m-win_amd64.whl (568.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

pmdarima-2.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

pmdarima-2.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pmdarima-2.0.2-cp37-cp37m-macosx_10_9_x86_64.whl (601.7 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pmdarima-2.0.2.tar.gz
  • Upload date:
  • Size: 630.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for pmdarima-2.0.2.tar.gz
Algorithm Hash digest
SHA256 1c86897632dd105532d7e92c5d8681d43ae763c40bd3fffef43e740ce0b6b5d5
MD5 66fb0db63bd4c67aa13a2f8931aa1b73
BLAKE2b-256 08e87817b5359bbdee06b7902fb4629180c6d8bbe1a35e65f28c6fe67f76c2c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pmdarima-2.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 565.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.0

File hashes

Hashes for pmdarima-2.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cc48882962f757d53b74cf16ec4706d006c40ae25fc4a509dadc65ac7c96fb6c
MD5 0f59be8536dbf72a668b0560449ef3ab
BLAKE2b-256 cda32c7a74f4b4369b256e03681066df1f189da927c0733e700f687b207f7b0f

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.2-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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7b9220a607e07708a322447c6e3a594c4f7b58df193251ef090608438d621e9
MD5 852a95fb4a7606cbd7228b8a42bcf5ae
BLAKE2b-256 aadddefeda999f98517774eb32c41a90d52c82c9ecfe8d264f1321c2224fa286

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ea64c8fc00343e9fdfd9d4e303d8fb2f60449071e638a45f68352a06ee204ce
MD5 23755934bb22a1bded5105f559af2410
BLAKE2b-256 fcb1d8456c85b9ca9f718790bfce298f132b8585f84bcd5a5389137ed6632c16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b20c207f546b1ddb02cc5d97e5759789615da6aa8c8ee32ee2710a5fe1183c4
MD5 0979d0527759e9f9093f6a5186304c6f
BLAKE2b-256 949b81e6735bea25aafa124ce48b1fee7cd20493420d63625206a9aa074248d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 80ccf9dea20ee264aa2f18db3e6b1e38c3248424db579712d60c57cf2768fb5f
MD5 dcdf4214e037554c86a4ec5acda9dcf7
BLAKE2b-256 2bf5c7e793153aa25cd07dd6e9a96bd2a80883c61ed489eff48a2ec40db6e1d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pmdarima-2.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 568.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for pmdarima-2.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4746f4dcba743109576a9a7afe5da96a44ae5f7fd1dfd876bbca68b5871b8d30
MD5 7248525a2144bff7941ae840631a1f0c
BLAKE2b-256 a7d3645c0aa5dfe4652fcbe3d5a0217eccd96d4814826d33ca57c4b7b196e8f7

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.2-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.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f20d79097b31ab6bf032b319c88874b38360f55b0463da2c8094aa316249a5f
MD5 faf32d073b0daf685c63737b9adcdf75
BLAKE2b-256 625f8e2012b442d37f7ef47acef06736f1b1f866fe261ede63fc4c343a308d65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 853c0a3b9565e37ed3982a0a238a75487b399a08ea91aa0c58c86427445b899a
MD5 d61b9896eb8d8969478ed3741f021fad
BLAKE2b-256 f19a48a65d025c40053129e56c4722dc5edd5a6651d5d2a0748ea552d235444e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81b03950d65cbc3c758567db82b603416f341ff2ced8f344079401d8c0d7046a
MD5 9a7bcb41b2b1b96fe262d027320e72da
BLAKE2b-256 e5b03c38bfeeceffbc8a4dba02681ff92aca4048ff87b3cd46b1564c60e131ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e54f1d9a01bac815e461c9a4089ea67e976a87c17d5770388d833820bbbe4362
MD5 ae09952bce4d2f9c359b0a6571a0eb50
BLAKE2b-256 83f88cee0af05af85bb8a9bcc702037741d0f2962664557000fd53cfa055483a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pmdarima-2.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 09462430b363fbb7074ec97705b33fe02f2e979dec869652356e0f3489f3af49
MD5 cd7734bd50bc142c2ef0e487eb1a4499
BLAKE2b-256 e21784af046512b4b72954ad10f62226c5ffcf5e1bf66117be4c731a300f080b

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.2-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.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc612a700546a1b2d1e18a9670c7687779e1b5225ef59eabb89efaf28ed316b0
MD5 0ac8129288193ce5fc72c2d6c65fefc1
BLAKE2b-256 75d1baf86d3d72c3c86aa66665514d9e5e091ee9bf9e2dc4023ec5ebf4fb8281

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 678a307c97b4549ebd4f86500d4c1166b171413b81228527425fc671cdcd4527
MD5 03644e38484761318f5e828aa341b82c
BLAKE2b-256 7002ad9fce58b189afa574c76131f121ead3dc4da0397bf3228627419b448570

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b23e133ba306aa7c10ec185e5ad47b3702fbe4a99f4118a141677f7c46a46a2f
MD5 e6775158b1c1594b959d2fa9313faeee
BLAKE2b-256 f6cc9f9522fdaa438984c81cec7b6b0abb80373c62094a5d84ea452f79830549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d13623b511554b2de48e5f03d9ae98636d8e4b2021285c05673da90144ccf5ff
MD5 7a5e9caf58be7b912e06e330af2f85c4
BLAKE2b-256 0cb58d0b8cf66df0383dec9fedde64aef32f6f9311817a569c33883250a68d13

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pmdarima-2.0.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ffd983738509194b612362449914e4997d07a3b087559e34e16ea78b230986f5
MD5 3eec768f9b7c9bc2dc7cdd96105865e2
BLAKE2b-256 be38049a3ca8fbe226207c670b1c1e5e9803e011f7dd651639a415407ec1219f

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.2-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.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34a06fa0cb996416784e7abf66ef068bd6e2774f2c59b8ede5e547b5c5c2c404
MD5 3a32101fd85040f03aa18b0d4f11c2cc
BLAKE2b-256 fc6937ec4971e57b4ab0c3f7b80827d25a877eff8f41f6b5a0be68610f7953d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e50c538bf7e21deb3eff63fdbde61ee801566ccb821233d67c36666d3082b8e
MD5 834545e07d9f22aa837897c65523f095
BLAKE2b-256 f10b405ad51b542d1a19cb935b7b2210f8b46d06d0025fb462a900e585129694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e089c4304fc87505084d263ac6c51fb5610782162eb460857377af09e9e7cd04
MD5 549b3e78d21fd564a62e5c402ca20faa
BLAKE2b-256 9b13b07f6e4dc6ecf457654957be14cc7971d71de5838374daa6f6bae75e4c16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9882af95f30a3676711014f24191dbf37a6d027c10d729c0cae882474dfc9c29
MD5 c8a485d6384129a5093e1e57a02ad5b5
BLAKE2b-256 a3fa6da5d3d30e8eb7571071142d02ec61cdef168c074685eda9a4f4720fb929

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pmdarima-2.0.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e94901c9d2a8c8f5b299ddb51a4133d688277ac4a282bf34d577235c283eaaa2
MD5 6f73dc64d02535003d507d82edc7d72e
BLAKE2b-256 c475e7ada1a205acf5f8961f174e67fbd2fc181b26e7d978bdb72f92bcc9f20b

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.2-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.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6800acca7e3343d60d8197cec1f3c194748128663a379287f03cfc4bba6a541
MD5 b91ff7270b69634a7a644548f3e3c374
BLAKE2b-256 41ee649d9131f18d9a3fa35ef90826d3aa306d74549059b346f06d3af95cac06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba36d38bdd69a0c41095cb784370f52041498fb4c8a088ff83fd6349e75c2029
MD5 d02992c003c4c90c98631bf077662046
BLAKE2b-256 2be48250adc0c6398bf5cc57d712e6c16b29da31eff6bc1aed65228a30de484f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fc4b38de2d0e816d075777c2082591fe38db715ffb01e1637e46553f9323e60e
MD5 e37a611879cf0d0161099e9469cbce81
BLAKE2b-256 0e023151ab0522f57849dae1323a6bf8eaac93d0024acdc0cc7b68fc02f4cccf

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