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 (32 & 64-bit)
    • 32-bit is only supported for 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-1.8.5.tar.gz (639.7 kB view details)

Uploaded Source

Built Distributions

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

pmdarima-1.8.5-cp310-cp310-win_amd64.whl (603.1 kB view details)

Uploaded CPython 3.10Windows x86-64

pmdarima-1.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.4 MB view details)

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

pmdarima-1.8.5-cp310-cp310-macosx_10_15_x86_64.whl (605.4 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

pmdarima-1.8.5-cp39-cp39-win_amd64.whl (601.9 kB view details)

Uploaded CPython 3.9Windows x86-64

pmdarima-1.8.5-cp39-cp39-win32.whl (550.0 kB view details)

Uploaded CPython 3.9Windows x86

pmdarima-1.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.4 MB view details)

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

pmdarima-1.8.5-cp39-cp39-macosx_10_15_x86_64.whl (604.0 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

pmdarima-1.8.5-cp38-cp38-win_amd64.whl (602.3 kB view details)

Uploaded CPython 3.8Windows x86-64

pmdarima-1.8.5-cp38-cp38-win32.whl (549.5 kB view details)

Uploaded CPython 3.8Windows x86

pmdarima-1.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.5 MB view details)

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

pmdarima-1.8.5-cp38-cp38-macosx_10_15_x86_64.whl (595.9 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

pmdarima-1.8.5-cp37-cp37m-win_amd64.whl (596.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

pmdarima-1.8.5-cp37-cp37m-win32.whl (544.7 kB view details)

Uploaded CPython 3.7mWindows x86

pmdarima-1.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.4 MB view details)

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

pmdarima-1.8.5-cp37-cp37m-macosx_10_15_x86_64.whl (595.9 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: pmdarima-1.8.5.tar.gz
  • Upload date:
  • Size: 639.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for pmdarima-1.8.5.tar.gz
Algorithm Hash digest
SHA256 090a7e195e849059e6b7f9908d80539f63c0771d8f9c5da44472960f17fcc9fa
MD5 1fab49c736dcb9b2eddba4a6d0b278e5
BLAKE2b-256 55e7c2d3dbc512b195053718550044da48bf9e95828c54a90f49d6daaac61ec3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pmdarima-1.8.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 603.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for pmdarima-1.8.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b5eff0d65282d7b76ada8aa12cfb60140b6bbd9a6977a8c3b8fae81224dda684
MD5 bd9a73bcf1338c9b182e832c12b697ad
BLAKE2b-256 ca8427699f3784cb1caa7b95a860a5b66ebeb8d7b75f9a957c3eb3b3ff911db4

See more details on using hashes here.

File details

Details for the file pmdarima-1.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: pmdarima-1.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.12

File hashes

Hashes for pmdarima-1.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 9a2a332796bc5932332908c3fa9b20378cba182002a7232efec5bdf179e1009e
MD5 34a8770f8ed3d7e42e07fbb6e74712c9
BLAKE2b-256 3fc9fcb94b3f4e10402a2ab1567f94259f1534bafb445b0fb62643e53416c8e2

See more details on using hashes here.

File details

Details for the file pmdarima-1.8.5-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: pmdarima-1.8.5-cp310-cp310-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 605.4 kB
  • Tags: CPython 3.10, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for pmdarima-1.8.5-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cffaeb8c7fa51f8e6ddcf417a5ce6eceae5d9fe88d9bf093a2272c9120562346
MD5 2b5a6d389ede2ce3d0bd26292a207f1b
BLAKE2b-256 6cd227837f421b942c6a2e53003599ee9d9f637f1aac327ab209dc4cb1862c6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pmdarima-1.8.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 601.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pmdarima-1.8.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 645b692b927965b0fb562ab5a8f1dffdd6cfbca84b3ca797796ada245738109d
MD5 153badaadc9fc7a3a2b9b1d7629bc1b0
BLAKE2b-256 960a4f154bb10ec0eb8c7e1fd5185ea93e54b85f05fa59b2400987f5beaf43d4

See more details on using hashes here.

File details

Details for the file pmdarima-1.8.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: pmdarima-1.8.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 550.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pmdarima-1.8.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8cafb3760bde70753452ad22996b5e84e40129e0c18557b40376045612d2207a
MD5 27e2fed3526936bade6926ac58cb36d7
BLAKE2b-256 31ac2a058d7e08c62eecbdde35787e352a4f51ecf12d654b25dd48400ace1c54

See more details on using hashes here.

File details

Details for the file pmdarima-1.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: pmdarima-1.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.12

File hashes

Hashes for pmdarima-1.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 af449c9076e942ad00c348ee291c23935ff3ae2871f812146be7b57ee25fa2ec
MD5 e93dfcfaaacf2a482e3c994bdda8d9ba
BLAKE2b-256 7ad98b10490c4b4ef9f28b80562bac0a72d6ef04c051c9d788f4e757085cd9b6

See more details on using hashes here.

File details

Details for the file pmdarima-1.8.5-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: pmdarima-1.8.5-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 604.0 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for pmdarima-1.8.5-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2ad0aefbff88a49592b70e70ac9283775dc65484e7a07e95db4e93504d5139fd
MD5 601ce2a07d9d1eafc5938428e22d9e5a
BLAKE2b-256 7302d54f10f2c8237b991634e70e2d6ae63568c836bdc1fb445507f14c38efae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pmdarima-1.8.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 602.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for pmdarima-1.8.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9b0eceb8b71c2972d7c64f77ee0765f15802f9a97f78b1af3f50d91f79872871
MD5 b78e9f4c365f0edd4359aa4f7495efea
BLAKE2b-256 3817c4ece62a2b8d590c8c598aad602fc64fc4079690c36b120db19feb861e8c

See more details on using hashes here.

File details

Details for the file pmdarima-1.8.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: pmdarima-1.8.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 549.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for pmdarima-1.8.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e2d0e99fb6608df1c62720baf3703f9fb151adcf3617356e3bf9d91634ddde51
MD5 a73ba2d3b26e124d94fcac8999d7a598
BLAKE2b-256 c55775de4a26f121f5758153725e3e037a1e0435d4e052f1eef2111f7522870e

See more details on using hashes here.

File details

Details for the file pmdarima-1.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: pmdarima-1.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.12

File hashes

Hashes for pmdarima-1.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 04a491d0a712a715beceb20c8576ad339446cbe4b022896935970fbe7326bf4d
MD5 f37124180d7251868222b16882040f1c
BLAKE2b-256 9870a9e4bb540fc5431b28fe59c45f06dbea10c07d1795913c871671a44a42e5

See more details on using hashes here.

File details

Details for the file pmdarima-1.8.5-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: pmdarima-1.8.5-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 595.9 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for pmdarima-1.8.5-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 069648fc214aeb17f04ef2e2ecb731625a935f781649b38f7bed65e88bd15995
MD5 1263c69b52af1a6df4aa4af86838fca7
BLAKE2b-256 3c100e07e650e36ee6671d22372bb3c7b3228f8b7714ca18d07fe82267eae8fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pmdarima-1.8.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 596.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for pmdarima-1.8.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fb26531ac291b59d6b8d8a396839686f5d2673775febb41995781114bec45123
MD5 228bcfe1bf5262868c7e519aca51f9d0
BLAKE2b-256 674a5bb39c6f12ccfb5b57c0eecaf9a0ea17c49d15bb989bc20bbb016d668cbd

See more details on using hashes here.

File details

Details for the file pmdarima-1.8.5-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pmdarima-1.8.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 544.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for pmdarima-1.8.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b3406734f132b343c737b4cf24de9305276414dbc64b84729e6be60decdcea92
MD5 4969c868c78c47bc1a13da74bbc43e46
BLAKE2b-256 b6a96aaa4cea292b5f0db869fc5853e5727456f80b4f06aaf60967cee8f1f7ca

See more details on using hashes here.

File details

Details for the file pmdarima-1.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: pmdarima-1.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.12

File hashes

Hashes for pmdarima-1.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 067b08bd515118ad61a16bec03d94ebb83f2704733bd928c051cab71d78abb6d
MD5 3ff2e87671f95414f8ddc0f762c42c93
BLAKE2b-256 0e6e52ebba2d442f1d0d815d39dacd7179c684e5f0fc7c63528a1c2661342e5b

See more details on using hashes here.

File details

Details for the file pmdarima-1.8.5-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: pmdarima-1.8.5-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 595.9 kB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.12

File hashes

Hashes for pmdarima-1.8.5-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eeb93bdb18ed054de34ec27a50207727c76f9ca6805c040316e3c2f6434d5148
MD5 5a9e766d3784f94878a7fc41d7070016
BLAKE2b-256 de97ff78d2018c07a9ef3f2960cf705dc6c618b9071869fb1e2995b1431c58ad

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