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.3.tar.gz (630.9 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.3-cp311-cp311-win_amd64.whl (566.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pmdarima-2.0.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (574.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

pmdarima-2.0.3-cp310-cp310-win_amd64.whl (569.7 kB view details)

Uploaded CPython 3.10Windows x86-64

pmdarima-2.0.3-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.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (579.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pmdarima-2.0.3-cp310-cp310-macosx_10_9_x86_64.whl (607.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pmdarima-2.0.3-cp39-cp39-win_amd64.whl (572.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pmdarima-2.0.3-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.3-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.3-cp39-cp39-macosx_11_0_arm64.whl (580.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pmdarima-2.0.3-cp39-cp39-macosx_10_9_x86_64.whl (608.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pmdarima-2.0.3-cp38-cp38-win_amd64.whl (572.5 kB view details)

Uploaded CPython 3.8Windows x86-64

pmdarima-2.0.3-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.3-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.3-cp38-cp38-macosx_11_0_arm64.whl (573.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pmdarima-2.0.3-cp38-cp38-macosx_10_9_x86_64.whl (601.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pmdarima-2.0.3-cp37-cp37m-win_amd64.whl (569.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

pmdarima-2.0.3-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.3-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.3-cp37-cp37m-macosx_10_9_x86_64.whl (601.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pmdarima-2.0.3.tar.gz
Algorithm Hash digest
SHA256 91acb3f7c12f3cfd6263efe323d3b8f94b58dcd242d68f11560a6c717001b01f
MD5 257ebfb92e3abc2fab71b7d3f1140efb
BLAKE2b-256 61050690150bb6784db4d30fcde6062e9410597f767f024a0d1a5fd850804ec9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pmdarima-2.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d74124f5eac7a273bc03a04bdffe3ed59f4960b5ada85fdfc5c6d5fe4a56dcc2
MD5 d9d02dd6feca59a30492d8565e7a5ff6
BLAKE2b-256 768163e7b4cb9f015716d7b1fcbbfcec28660fde4e90c746dcbe0e2fb695debf

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.3-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.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ffa898354370612df043c9ea12b536cf31ef88eb9f2558a4a73983420362fd06
MD5 398dc6046f7fa960c606e9064faaf368
BLAKE2b-256 699b92d9c02edce83fb65abf36e8e00c0edbaf7c3424a7cc69f6d7f224594cd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d90729d8574966dbfc198ec1e3d7f30604e5b899fff0f8683b8160ee0bc24654
MD5 58828dafb20c29d5702faef3cff29415
BLAKE2b-256 c35c459e5b0507aec41d1d517ef2bacfdf88b9e376a30faff49d917a356c79be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe5f3ed46eadb72f66fc295983331a8e25a84c7873f06b292ed0bad196007b56
MD5 0767165171442b1c6792fee6f9de3f6c
BLAKE2b-256 d07995c4a3d703f3384eeb712a0599b91f98b48c121d10b118646002d5225c40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8749730e7911715de6e4087011c5d5bcd93b4b5f6ae150e6ff615d29ca0bf49d
MD5 5cd6ae170cdd789121d6a94868fa0cb7
BLAKE2b-256 8e9daf77191ec08b0025b63b4d0192358cc6fda477a104d9c3ec6021cacb7fa4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pmdarima-2.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 95e2e4629932b7b657ea7e6f9db610a71cafce704d8f44d51b7643853a78c2fe
MD5 9d79f15cf30662687983191a77809203
BLAKE2b-256 d5a670f7bd188b0d17290bba52990280dbad2082558bd28071e1553c23be94f1

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.3-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.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68be6ce7f4f66247236c44f20ac27d7252a096bd61971cd766cd7b01c34f38b4
MD5 29558736b442faca9a3aebf18c33091e
BLAKE2b-256 5ecae5cbca018a54b588f8e37186bfb05b18a05ea90169d13c3d6cb377ca29bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14b606363f777b4ab17821c989637aa11f209ec8285d46666a7744236995798c
MD5 31d70fcab295802668a1a97ffb234203
BLAKE2b-256 d17b5f55be330dceb1e66c2063c532b1d26e859c9183bbfadc5190670ca9a759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9da525af80651e9d44e71c7483052e6bc68eb741768a15fb0142dbffdf50f42
MD5 0889ba0739b04aec8e043a61f94fb7e3
BLAKE2b-256 55a48125b6ec6e6eb4f698f896900c542efb323b0081b7c2ef3db47b68f16ace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6091a48a9e7eb3e48fdcd748bb7bdfa90635cfde110c2a5fd1ebc0c30f6c8ef5
MD5 4d9e55ce79cdecb3515c8eb760ffaf76
BLAKE2b-256 b6804db05fb5131640d1ab17590df1c622780b63f5b0442dfddc2a56504ae5c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pmdarima-2.0.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 572.7 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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e53685f08e971cdb1bf077418af55e7aae8397fcdefb3a335b7293d420245c62
MD5 9c519890b4aa746e3c9a5b92b7490110
BLAKE2b-256 540f3c346f330fe9ff3a3e166d6f24f7202fd88b2315e51040e699ce1f27662e

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.3-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.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d3cfaeaf31ff5c89ab60b4fc2e671c5ecd5d1bba99f3cd93c4a2bb19cba79d51
MD5 e6cc57e6c316b6cff4c9cf40ee568c73
BLAKE2b-256 07f4059085deda2c1eac0f0277edcbd0cf0a8832b90f25ba82b3f0bc85419c99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8ba53a952e374747e5be1263d74e10c9f780503fbd1a1e6156417a7d8e67507
MD5 c9e6ea22b5b35bc7453d7e98175d6da4
BLAKE2b-256 642285b1262df9ac2d22a0ec8313a436daab59de3a5fba3278566273dc302a8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 849bc7d1ec929df538698f3eca752a5526090cbe5d625c11c28bf1885bd6509a
MD5 8aca85953a9658a9580bcfa4693c92ca
BLAKE2b-256 d0479dfa533b612ff53d0d8d24153ca185fe3666aa01377fa38bae262dea4f45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d941ee5940f4a9796d7bd19e720b58a44eaa5331b28ccd7194f2bf6fc2d5ee1e
MD5 99a3b4334e78e96998230e9f014e9692
BLAKE2b-256 bf15b4f4218fae2d14bb2a5eba044f44cc7cd002300da4b727c3d70d6277a70c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pmdarima-2.0.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 572.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.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 09d24b4bae78b04c496c9f99bd6bd050813bdda38e149b57bfa0fe1642613b93
MD5 52c0a39205c73754f2b9e49bd6a8557c
BLAKE2b-256 77c764f47f602ab48390c6d13c04b95e83d2d38d4969b348f88588e4980ce2df

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.3-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.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0914aab1dfd840e49b67964c664db7439f2a59b10af3c8635eac32061707f436
MD5 a8266e590effb970fc7fa3cdb1195681
BLAKE2b-256 dbd8080c04bf9219f31606805ba7948c0d68c47b62cf801e623336d2653db210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47522b466e3894bfbbd58a39150a89ccf75ef0cb661e3ecb96c199e749e5f60b
MD5 b584be75c562f1bcc5a60099787b7875
BLAKE2b-256 345e5721c38cd3e522dd91f2c0e60b43dbdad95090786bdf7f136583c770f8d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9b0f49f36dc85b6b8fec2a8d1c56d5b6d2706ca478d1d90c95e37688bed4a01
MD5 7d8c5d4d1e606b7d318ad3a48db97009
BLAKE2b-256 112dbbd8f5baef053fb328c9026a83cd3ed26c34807b9c80918dc666fdfafaf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4b0840080fbbbdc0eaaa988f268b8471087ca5f16047d3a95363418da1544b2
MD5 ffaf5561f74b366001ab85288627e17c
BLAKE2b-256 20e7ed4938e4120a93126e5ce9ce28da0ea9c7c21688b74d0f3df35154a651a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pmdarima-2.0.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 569.3 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.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 076f4904865f43510f8a82b3bdcd9d5e0f54de67217a9898d633ef6f625825c4
MD5 919192dcc14f31f467f2a36c77fffaea
BLAKE2b-256 82fa04973ecbd9fb6c0009202d53d1ffe1a2c916cac68e830a716532c9ae4930

See more details on using hashes here.

File details

Details for the file pmdarima-2.0.3-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.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cce9784abe6b4742b6c557432342585de4236a29978df037d17a6c3116a16940
MD5 962c842d58c5eb9a91ecc79b8e1d7fa2
BLAKE2b-256 d3ff740ead4f22d789e73e85231142e115c8876e14897badab8f52c0ae951d82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77258305437a235c890bacb0a847e1cfbbc670ca8f92a7feab67f03088d3d3ef
MD5 2152187e1ae3a3e6c82ea880479bce86
BLAKE2b-256 f88d3748ed7716ca6b9193380663d4d5b10727eb19460aa8834aa26ab1673226

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pmdarima-2.0.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e89c69b5908777789fb20efe9202ab8ea8a2c7a19b6a9d3f65102483bdb3e4a1
MD5 6c404de0bced3507f51ac7e53f1f6405
BLAKE2b-256 3e4b9c22a06ee204938f5e20bd0212f6f05aac718fc744a11a974ef8fa5cf677

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