Skip to main content

Python interface to Stan, a package for Bayesian inference

Project description

PyStan: The Python Interface to Stan
====================================

.. image:: https://raw.githubusercontent.com/stan-dev/logos/master/logo.png
:alt: Stan logo
:scale: 50 %

|pypi| |travis| |appveyor| |zenodo|

**PyStan** provides a Python interface to Stan, a package for Bayesian inference
using the No-U-Turn sampler, a variant of Hamiltonian Monte Carlo.

For more information on `Stan <http://mc-stan.org>`_ and its modeling language,
see the Stan User's Guide and Reference Manual at `http://mc-stan.org/
<http://mc-stan.org/>`_.

Important links
---------------

- HTML documentation: https://pystan.readthedocs.org
- Issue tracker: https://github.com/stan-dev/pystan/issues
- Source code repository: https://github.com/stan-dev/pystan
- Stan: http://mc-stan.org/
- Stan User's Guide and Reference Manual (pdf) available at http://mc-stan.org

Related projects
----------------

- Scikit-learn integration: `pystan-sklearn <https://github.com/rgerkin/pystan-sklearn>`_ by @rgerkin.

Similar projects
----------------

- PyMC: http://pymc-devs.github.io/pymc/

Detailed Installation Instructions
----------------------------------
Detailed installation instructions can be found in the
`doc/installation_beginner.md <https://github.com/chendaniely/pystan/blob/develop/doc/installation_beginner.rst/>`_ file.

Quick Installation (Linux and macOS)
------------------------------------

`NumPy <http://www.numpy.org/>`_ and `Cython <http://www.cython.org/>`_
(version 0.22 or greater) are required. `matplotlib <http://matplotlib.org/>`_
is optional.

PyStan and the required packages may be installed from the `Python Package Index
<https://pypi.python.org/pypi>`_ using ``pip``.

::

pip install pystan

Alternatively, if Cython (version 0.22 or greater) and NumPy are already
available, PyStan may be installed from source with the following commands

::

git clone --recursive https://github.com/stan-dev/pystan.git
cd pystan
python setup.py install

If you encounter an ``ImportError`` after compiling from source, try changing
out of the source directory before attempting ``import pystan``. On Linux and
OS X ``cd /tmp`` will work.

Example
-------

::

import pystan
import numpy as np
import matplotlib.pyplot as plt

schools_code = """
data {
int<lower=0> J; // number of schools
real y[J]; // estimated treatment effects
real<lower=0> sigma[J]; // s.e. of effect estimates
}
parameters {
real mu;
real<lower=0> tau;
real eta[J];
}
transformed parameters {
real theta[J];
for (j in 1:J)
theta[j] = mu + tau * eta[j];
}
model {
eta ~ normal(0, 1);
y ~ normal(theta, sigma);
}
"""

schools_dat = {'J': 8,
'y': [28, 8, -3, 7, -1, 1, 18, 12],
'sigma': [15, 10, 16, 11, 9, 11, 10, 18]}

sm = pystan.StanModel(model_code=schools_code)
fit = sm.sampling(data=schools_dat, iter=1000, chains=4)

print(fit)

eta = fit.extract(permuted=True)['eta']
np.mean(eta, axis=0)

# if matplotlib is installed (optional, not required), a visual summary and
# traceplot are available
fit.plot()
plt.show()

.. |pypi| image:: https://badge.fury.io/py/pystan.png
:target: https://badge.fury.io/py/pystan
:alt: pypi version

.. |travis| image:: https://travis-ci.org/stan-dev/pystan.png?branch=master
:target: https://travis-ci.org/stan-dev/pystan
:alt: travis-ci build status

.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/stan-dev/pystan?branch=master
:target: https://ci.appveyor.com/project/ariddell/pystan/branch/master
:alt: appveyor-ci build status
.. |zenodo| image:: https://zenodo.org/badge/10256919.svg
:target: https://zenodo.org/badge/latestdoi/10256919
:alt: zenodo citation DOI


Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pystan-2.18.0.0.tar.gz (17.5 MB view details)

Uploaded Source

Built Distributions

pystan-2.18.0.0-cp37-cp37m-win_amd64.whl (72.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

pystan-2.18.0.0-cp37-cp37m-win32.whl (50.5 MB view details)

Uploaded CPython 3.7m Windows x86

pystan-2.18.0.0-cp37-cp37m-manylinux1_x86_64.whl (50.0 MB view details)

Uploaded CPython 3.7m

pystan-2.18.0.0-cp37-cp37m-manylinux1_i686.whl (50.0 MB view details)

Uploaded CPython 3.7m

pystan-2.18.0.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (52.1 MB view details)

Uploaded CPython 3.7m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.6+ intel macOS 10.9+ intel macOS 10.9+ x86-64

pystan-2.18.0.0-cp36-cp36m-win_amd64.whl (72.5 MB view details)

Uploaded CPython 3.6m Windows x86-64

pystan-2.18.0.0-cp36-cp36m-win32.whl (50.5 MB view details)

Uploaded CPython 3.6m Windows x86

pystan-2.18.0.0-cp36-cp36m-manylinux1_x86_64.whl (50.0 MB view details)

Uploaded CPython 3.6m

pystan-2.18.0.0-cp36-cp36m-manylinux1_i686.whl (50.0 MB view details)

Uploaded CPython 3.6m

pystan-2.18.0.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (52.1 MB view details)

Uploaded CPython 3.6m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.6+ intel macOS 10.9+ intel macOS 10.9+ x86-64

pystan-2.18.0.0-cp35-cp35m-win_amd64.whl (72.5 MB view details)

Uploaded CPython 3.5m Windows x86-64

pystan-2.18.0.0-cp35-cp35m-win32.whl (50.5 MB view details)

Uploaded CPython 3.5m Windows x86

pystan-2.18.0.0-cp35-cp35m-manylinux1_x86_64.whl (50.0 MB view details)

Uploaded CPython 3.5m

pystan-2.18.0.0-cp35-cp35m-manylinux1_i686.whl (50.0 MB view details)

Uploaded CPython 3.5m

pystan-2.18.0.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (52.1 MB view details)

Uploaded CPython 3.5m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.6+ intel macOS 10.9+ intel macOS 10.9+ x86-64

pystan-2.18.0.0-cp27-cp27mu-manylinux1_x86_64.whl (50.0 MB view details)

Uploaded CPython 2.7mu

pystan-2.18.0.0-cp27-cp27mu-manylinux1_i686.whl (50.0 MB view details)

Uploaded CPython 2.7mu

pystan-2.18.0.0-cp27-cp27m-manylinux1_x86_64.whl (50.0 MB view details)

Uploaded CPython 2.7m

pystan-2.18.0.0-cp27-cp27m-manylinux1_i686.whl (50.0 MB view details)

Uploaded CPython 2.7m

pystan-2.18.0.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (52.1 MB view details)

Uploaded CPython 2.7m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.6+ intel macOS 10.9+ intel macOS 10.9+ x86-64

File details

Details for the file pystan-2.18.0.0.tar.gz.

File metadata

  • Download URL: pystan-2.18.0.0.tar.gz
  • Upload date:
  • Size: 17.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.6.0 setuptools/0.9.8 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.5

File hashes

Hashes for pystan-2.18.0.0.tar.gz
Algorithm Hash digest
SHA256 594c1523fd5cd6034ba1b58b1a0741f7e753c819d17745395defa25e526115ce
MD5 bfbcd0a7bdce5a832db87b5c8b57a880
BLAKE2b-256 6fa1fdf8906311733b7894aad1395d4d43afbbc79ca7573a07200eb105c5938c

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pystan-2.18.0.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 72.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for pystan-2.18.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1e69e1be68c78afb7b53c2198e90b4e7447d1375cf3d9c4d5d6a06ffaf41fa6d
MD5 00f135bbf8568da74ded2d5e45ad8c48
BLAKE2b-256 d6d1145ec408b1802b50bcb5dfbb364561e46fee6b542a0540bb0810944f57b3

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pystan-2.18.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 50.5 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for pystan-2.18.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bdfbc9a6c7c811c7c1de79a54c2497677f99d0a1b602f0c801a5fd3218d31a0a
MD5 26d380760f22a181e4c50286a1d2579a
BLAKE2b-256 01ae706461fc5946c1f86f336bce875618a6219bdadf30dde228a3b7273257f6

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pystan-2.18.0.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 50.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for pystan-2.18.0.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 eebdd1b324ee3331c8a1a925ed03216ab1fc9dda3595ee07f912b17bf6e98096
MD5 f0060062e417d65fddde0680ce31dd34
BLAKE2b-256 a0d1c3911ab4696f028c08e1d85ceeed9fea6421716d0e671c10d6d2b8be89fd

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pystan-2.18.0.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 50.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.5

File hashes

Hashes for pystan-2.18.0.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2d35bcf5440141102913fd9f0a42a40647f3459c7efe19d7afcd0aaa4f8e6c82
MD5 cb8a9c8918962158744b8a987979b9ef
BLAKE2b-256 003cf1bf1960b34a57eed88a1cf10acb93105e57f8479043b948e1a5b1f85dc3

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for pystan-2.18.0.0-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 4d1e89dd6e31c6bc0655f16093baf12b30de3f94f875acc7d914d86a64c00568
MD5 f5e0081a751f66628650c6ff3a069df5
BLAKE2b-256 96e759c8d8fec38944649bce8f4f5dd90edb1558f8690e510d791ebbaa472eb4

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pystan-2.18.0.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 72.5 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.6.0 setuptools/0.9.8 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.5

File hashes

Hashes for pystan-2.18.0.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0538351eede73f29183ee99d0f068e14d70b17aaa47434bffbde097a9fdf4f07
MD5 23f58d3a432f1e3b3b581320c68edaa9
BLAKE2b-256 e30466e4a41cc1799716d3727f6e44957c1a7afca8e1c73b3af859af77568d15

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pystan-2.18.0.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 50.5 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.6.0 setuptools/0.9.8 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.5

File hashes

Hashes for pystan-2.18.0.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 82f0f7adaea4237d9686d1b7c05feb6649dd8ba3dfa0ad503ff7bdf98a1d3e23
MD5 4c6607c7e9998acf1f3c61a694426628
BLAKE2b-256 0bb4ab2a5119a63d0881d125d1f0f5ca98019606d6a10b743405404bbe779baa

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pystan-2.18.0.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 50.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.6.0 setuptools/0.9.8 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.5

File hashes

Hashes for pystan-2.18.0.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 93f04a688f02bc9abf5ef5fce1ede67caef384ad191aaa68c9780047a0e055e3
MD5 877769e3c8e440f7ee34d8123165e25a
BLAKE2b-256 49f9106f3db81cf4da1be937a11b63f400d072718662f3fd1349ea7f0458aa0f

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pystan-2.18.0.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 50.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.6.0 setuptools/0.9.8 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.5

File hashes

Hashes for pystan-2.18.0.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 662f3983a6f5db48a4a678c5dcd36e489a49b4cd2df683cd5ee7851dc8c7d5d6
MD5 2a4fe5cd255137231597b9877bed5828
BLAKE2b-256 ccd2484708e30048422db0eb4e596c53b4b2a5e13cc2d6c2e48c2d20418b631f

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for pystan-2.18.0.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 c8de4b1a501c6ebd17456d0b45964de1ca795d00a85c03f2f0d1ad6bf113bbb6
MD5 85489843e4c19e2153e2b48fa23d4d35
BLAKE2b-256 3c6126d9c108e6a1ddf59068e92b42fa2e3e08bd567bd41b0c5eb735d82d82cf

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: pystan-2.18.0.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 72.5 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.6.0 setuptools/0.9.8 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.5

File hashes

Hashes for pystan-2.18.0.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5deac270eaf171fb23b311ac30877724b86f4313a9576d3ade53a2e3f752cc8c
MD5 3033983ddc457bcf3349de5bafaaf72d
BLAKE2b-256 eddc386aa9acc6c3f89ef56f75255a2de97bb8593f3109e01ebbe20ab2a4718e

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: pystan-2.18.0.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 50.5 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.6.0 setuptools/0.9.8 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.5

File hashes

Hashes for pystan-2.18.0.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 315b98d2cfe5327924180fcd9769f9ac74f0663eab66a004e219d48ebb3aedf5
MD5 2b0b1ac904fa56af564eadacc68ec926
BLAKE2b-256 9a506f537b91d1286bc355a30929b66c03ab1c16203d8c33213b79ee9296bf8a

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pystan-2.18.0.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 50.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.6.0 setuptools/0.9.8 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.5

File hashes

Hashes for pystan-2.18.0.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4f21446f05ab23b3f21b2983b219828607da13e9a7c1fadbc273a61fe968950c
MD5 036b850b43d9bff1aa6bdc2c219ed114
BLAKE2b-256 170c3415395cff81284a08ecd3577dfbffca20f1f3bcb06f61e7a368c371d0c7

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: pystan-2.18.0.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 50.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.6.0 setuptools/0.9.8 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.5

File hashes

Hashes for pystan-2.18.0.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dbb72046bed48975188289588ba580543552956a7782fbdbb6d8c7daa019918e
MD5 6f64af6b3a546166e1ce2ca476e1562c
BLAKE2b-256 6f9a0ed4e9f3afe2ae1768f0428384d19510dca3e22e95c82b18de43e2b78bbb

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for pystan-2.18.0.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 f205d7c0f2cd25f5db5e30ed0ca7ff270434ea8881f5003d6ca92ed8eae4c982
MD5 3b01e2b533e068f91c09e6db99ccf75b
BLAKE2b-256 39bfc3c39b250c525d3ddb36f51df33b1788a43bc7d8a54e7485ddd25fa596a3

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: pystan-2.18.0.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 50.0 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.6.0 setuptools/0.9.8 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.5

File hashes

Hashes for pystan-2.18.0.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 78efc5a2ae37b7b2979e870fc86f322a1bc3cd482d0bd6fc4e8ce0d0021496c7
MD5 108911871d3553d546339bf3268c525a
BLAKE2b-256 1723f414627f36a39998d06469f7faa79f2d940753d82adfd0a1bf9059c18355

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: pystan-2.18.0.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 50.0 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.6.0 setuptools/0.9.8 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.5

File hashes

Hashes for pystan-2.18.0.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac613745e8a544e13a515563d5dda5de63eb6a58446eddb96ecae23947bd51a5
MD5 abceeb775de8974f22449c0668d79bbe
BLAKE2b-256 26f5a906cdec37e5af29aaccd926564e7041bee1a3dcbcd8956cfb873bc26aec

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pystan-2.18.0.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 50.0 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.6.0 setuptools/0.9.8 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.5

File hashes

Hashes for pystan-2.18.0.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0c31b7849ad453a28dd55cc9367be07cb80e7a106b8114479496359e5565be02
MD5 185f8b014abfb48e974a61050f7b44dc
BLAKE2b-256 90192ae24ae437bc98b0964b6457da497d0081fd7d63c9277ea886b4dc883f6c

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: pystan-2.18.0.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 50.0 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.6.0 setuptools/0.9.8 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.5

File hashes

Hashes for pystan-2.18.0.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f61438ee75beee74a4b0678493af715d896db1818adbfe16c93bd9b6f4facfba
MD5 32535075d5e6087460683e7d91468eea
BLAKE2b-256 ef41a115cda70be7f900d30dac285b8b9898d0b3facde6201122d3348ecc0e46

See more details on using hashes here.

File details

Details for the file pystan-2.18.0.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for pystan-2.18.0.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 d202befdb2d36298c56373350e0a11b2ce152cd7c101120482fa17e0d9d42de4
MD5 2c9dff6023e3e09c10f70c9697404609
BLAKE2b-256 159474b08600c4baab74504973c5be323b0c2fd07ed43ee0aa017805badd1745

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