Skip to main content

A Python 3 package of statistical analysis and distributions

Project description

PyStats

PyStats is a Python 3 library of statistical analysis and distribution functions with simple R-like syntax, scalar/list input/output with OpenMP parallelization.

Contents

Distributions

Functions to compute the cdf, pdf, quantile, as well as random sampling methods, are available for the following distributions:

  • Bernoulli
  • Beta
  • Binomial
  • Cauchy
  • Chi-squared
  • Exponential
  • F
  • Gamma
  • Inverse-Gamma
  • Laplace
  • Logistic
  • Log-Normal
  • Normal (Gaussian)
  • Poisson
  • Student's t
  • Uniform
  • Weibull

Installation

You can use pip to install this library:

pip3 install pystats

Alternatively, you can also clone this repository and install the plugin manually using pip:

$ git clone git@github.com:marcizhu/PyStats.git
$ pip3 install ./PyStats

After that, you can just import pystats (or do from pystats import * if you don't want to type pystats. before all functions) and you're ready to go.

Documentation

Full documentation is available online:

Documentation Status

A PDF version of the documentation is available here.

Syntax and Examples

Functions are called using an R-like syntax. Some general rules:

  • Density functions: pystats.d*. For example, the Normal (Gaussian) density is called using
pystats.dnorm(<value>, <mean>, <standard deviation>)
  • Cumulative distribution functions: pystats.p*. For example, the Gamma CDF is called using
pystats.pgamma(<value>, <shape parameter>, <scale parameter>)
  • Quantile functions: pystats.q*. For example, the Beta quantile is called using
pystats.qbeta(<value>, <a parameter>, <b parameter>)
  • Random sampling: pystats.r*. For example, to generate a single draw from the Logistic distribution:
pystats.rlogis(<location parameter>, <scale parameter>)

The library also supports lists as input/output:

  • The pdf, cdf and quantile functions can take list arguments. For example:
norm_pdf_vals = pystats.dnorm([x / 10 for x in range(-10, 10, 1)], 1.0, 2.0)
  • The randomization functions (r*) can output lists of arbitrary size. For example, the following code will generate a 100-item list of iid draws from a Gamma(3,2) distribution:
gamma_rvs = pystats.rgamma(100, 3.0, 2.0)

Additionally, most parameters have defaults to most common values and named parameters are also supported. For example, to generate a single draw from a Normal(0, 2) the following can be used:

norm_draw = pystats.rnorm(sd=2.0)

Examples

More examples with code:

# Evaluate the normal PDF at x = 1, mu = 0, sigma = 1
dval_1 = pystats.dnorm(1.0, 0.0, 1.0)

# Evaluate the normal PDF at x = 1, mu = 0, sigma = 1, and return the log value
dval_2 = pystats.dnorm(1.0, 0.0, 1.0, True)

# Same as above, but using default values and named parameters
dval_3 = pystats.dnorm(1.0, log=True)

# Evaluate the normal CDF at x = 1, mu = 0, sigma = 1
pval = pystats.pnorm(1.0, 0.0, 1.0)

# Evaluate the Laplacian quantile at q = 0.1, mu = 0, sigma = 1
qval = pystats.qlaplace(0.1, 0.0, 1.0)

# Draw from a t-distribution with dof = 30
rval = pystats.rt(dof=30)

# List output
beta_rvs = pystats.rbeta(100, 3.0, 2.0)

# List input
beta_cdf_vals = pystats.pbeta(beta_rvs, 3.0, 2.0)

For more information on default values, parameter names and other examples, check the documentation.

Credits

This library uses kthohr/stats for the statistical distribution functions, kthohr/gcem (a dependency of the previous library) and pybind/pybind11 to generate the binding code.

License

Copyright (c) Marc Izquierdo 2021
This library is licensed under the MIT License. See LICENSE for more details.

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

PyStats-0.1.tar.gz (5.4 kB view details)

Uploaded Source

Built Distributions

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

PyStats-0.1-pp37-pypy37_pp73-win32.whl (105.9 kB view details)

Uploaded PyPyWindows x86

PyStats-0.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl (193.3 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

PyStats-0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (170.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

PyStats-0.1-pp36-pypy36_pp73-win32.whl (105.8 kB view details)

Uploaded PyPyWindows x86

PyStats-0.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (193.4 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

PyStats-0.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (170.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

PyStats-0.1-cp39-cp39-win_amd64.whl (125.1 kB view details)

Uploaded CPython 3.9Windows x86-64

PyStats-0.1-cp39-cp39-win32.whl (105.8 kB view details)

Uploaded CPython 3.9Windows x86

PyStats-0.1-cp39-cp39-manylinux2010_x86_64.whl (192.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

PyStats-0.1-cp39-cp39-manylinux2010_i686.whl (194.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

PyStats-0.1-cp39-cp39-macosx_10_9_x86_64.whl (171.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

PyStats-0.1-cp38-cp38-win_amd64.whl (135.3 kB view details)

Uploaded CPython 3.8Windows x86-64

PyStats-0.1-cp38-cp38-win32.whl (105.7 kB view details)

Uploaded CPython 3.8Windows x86

PyStats-0.1-cp38-cp38-manylinux2010_x86_64.whl (192.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

PyStats-0.1-cp38-cp38-manylinux2010_i686.whl (194.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

PyStats-0.1-cp38-cp38-macosx_10_9_x86_64.whl (171.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

PyStats-0.1-cp37-cp37m-win_amd64.whl (133.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

PyStats-0.1-cp37-cp37m-win32.whl (106.5 kB view details)

Uploaded CPython 3.7mWindows x86

PyStats-0.1-cp37-cp37m-manylinux2010_x86_64.whl (202.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

PyStats-0.1-cp37-cp37m-manylinux2010_i686.whl (204.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

PyStats-0.1-cp37-cp37m-macosx_10_9_x86_64.whl (164.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

PyStats-0.1-cp36-cp36m-win_amd64.whl (133.5 kB view details)

Uploaded CPython 3.6mWindows x86-64

PyStats-0.1-cp36-cp36m-win32.whl (106.5 kB view details)

Uploaded CPython 3.6mWindows x86

PyStats-0.1-cp36-cp36m-manylinux2010_x86_64.whl (202.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

PyStats-0.1-cp36-cp36m-manylinux2010_i686.whl (204.8 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

PyStats-0.1-cp36-cp36m-macosx_10_9_x86_64.whl (164.3 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

PyStats-0.1-cp35-cp35m-win_amd64.whl (133.5 kB view details)

Uploaded CPython 3.5mWindows x86-64

PyStats-0.1-cp35-cp35m-win32.whl (106.5 kB view details)

Uploaded CPython 3.5mWindows x86

PyStats-0.1-cp35-cp35m-manylinux2010_x86_64.whl (202.0 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

PyStats-0.1-cp35-cp35m-manylinux2010_i686.whl (204.8 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

PyStats-0.1-cp35-cp35m-macosx_10_9_x86_64.whl (164.3 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

File details

Details for the file PyStats-0.1.tar.gz.

File metadata

  • Download URL: PyStats-0.1.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1.tar.gz
Algorithm Hash digest
SHA256 40c9d7be90b9be441099d908a856fec85cda3909b7df04930f0330f63bef6815
MD5 0e6329d8056d4f5cceb4f64b690f6bbf
BLAKE2b-256 cb7828ced26af1c3511cc864db2c032a93d87761616c93f7d805bb62c19ced60

See more details on using hashes here.

File details

Details for the file PyStats-0.1-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: PyStats-0.1-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 105.9 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 08da282bbb7724b2cfcfbf0544b5962d13fc0c01efbfd3c0dd622490174731cb
MD5 d6d7f75f4a07190488c31a25f2a401d5
BLAKE2b-256 095296a263e54a6eb8b2cc7b79d1f0ec1929a51ddfbe84e47957f2ad790e0b01

See more details on using hashes here.

File details

Details for the file PyStats-0.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: PyStats-0.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 193.3 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a33ed6409cce96ba2518ae1dd02807f1c244625654f6624a80cc07aa17403191
MD5 617344d8344a4bef232baa39d0c422fb
BLAKE2b-256 b63134b15be93fdb1e355a02fcaf42b885f22e4620517e577636bc8aedc37938

See more details on using hashes here.

File details

Details for the file PyStats-0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: PyStats-0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 170.9 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be0d85ec261b5f0f7d7f91ee0c24b6f5e1a0cf083c9c81bfe69e23734afe3a55
MD5 01bf6d1733cf59868f7e6867a6e86048
BLAKE2b-256 30b3d8d39bed3d79cae2d5459b2a51a98b6f4823b0bf59399ec62f79d9382ad4

See more details on using hashes here.

File details

Details for the file PyStats-0.1-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: PyStats-0.1-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 105.8 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 41c378d6efef507ef662723874bbbfe6436352d0147f3e69fb485ff26f00bbac
MD5 960d91c00d1bc58975c216f32cf35d03
BLAKE2b-256 5dbcf0c30a9cbe63c9c8c582764681f5332fcf1f79075752a7b4c6fdc2618975

See more details on using hashes here.

File details

Details for the file PyStats-0.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: PyStats-0.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 193.4 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 db64d1dca7bfd7ad05d12cdaf7da3e42cb754f58c591a343be5acf3b2348ff05
MD5 b33fc522016f6b722915dd3787c87d3f
BLAKE2b-256 9d31fd056ee23a8ae8ef81f76376eacb72c5b48dbafe32e85c9f8c60d23e2d82

See more details on using hashes here.

File details

Details for the file PyStats-0.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: PyStats-0.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 170.9 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b245ec0c5a7b9271c986f4b94c170f36d4ca33ec2adae92d5804789e4862dd4
MD5 5fce905c75d50f66000a4cc13f2cbc7e
BLAKE2b-256 b52d1f080c8c32baf171e963d4098f3efbc5dfb0d2e8186509e3e526d3153fc8

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: PyStats-0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 125.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 625f69b64669dcdfa361770515ad528050a9559d640e097161afa32e3707330f
MD5 b750a8ca70df5a9fa9b1489b59b8a68d
BLAKE2b-256 6f818c2a42be1e3cf63843fb1b63d1fbacd7d7db4e32bcd11e4c7b3c53fd96d2

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: PyStats-0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 105.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 60d13b9a4255921d3bfd6bc54b3a3ad672c178f488f072cde46f223197d0d0c5
MD5 a5e76ad176c8ff4b667a512966d94380
BLAKE2b-256 ff4df104dc83609a54d15b404c633d624b32211b1396a196d7717b5acffc0573

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: PyStats-0.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 192.8 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 402b13ea6ce7e89b9ad18a453714010c5dcfb2bef05082155d0d3cae85ea1968
MD5 d30ce842f0eeb3dccb1577a6686c0215
BLAKE2b-256 74c98f3d81f53144ab2cb37c0ab8795fd4beea0a16dea4bebc1efc0a478b8233

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: PyStats-0.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 194.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dcd5953a066c2a7f9f3f9605ca54e728973f4f2743dacde09ac34b2765a9ab7d
MD5 041f3f7ba2e41db27277441b1c47a576
BLAKE2b-256 35cb3b61e254f6cd127a8e81a0c1f312935ea30e516b822ee9b9871bdd1a1d8f

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: PyStats-0.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 171.3 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d84633d2f6a5ae9f7bebb3e76ff3d7c1feb5da20fcbb7f5f79409b190dd4488
MD5 1efe91455539e9dc39186d989fda97b1
BLAKE2b-256 c1778469190ca77766e915aa04e0298d000378e57b7ff486243b98a3a34efd34

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: PyStats-0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 135.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3bc77b82da3392a612cd7f42238765bfc31cc7241385996c940de5cdb3c9fa2f
MD5 a33a775bb522fc8c11503f9f30474e75
BLAKE2b-256 8474f0c984cf89ed2f75cf45fca511370b600839433a55ffc98ed5b7beb9f564

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: PyStats-0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 105.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 33eb260c5cd5c38ef85d9301e8577be41a560795539485d7ec2bca36bf191436
MD5 6ef397f11d3548b0927951375a66df9d
BLAKE2b-256 6c3e770c4b347ca1917a4637de7b8c28e31c40a39f43d977692674163e329638

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: PyStats-0.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 192.4 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 35b9e7d0a235029fb0e628c37be9e1174d9c1f4fbdd12741cc896fdfaf12ed62
MD5 bd0e3f61d1171ee9c52265456c60b353
BLAKE2b-256 14adeeaa7eadb789a4f2464c0729d3cd6e334795825f881b4688c675ae558e6e

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: PyStats-0.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 194.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cb858dc1652265f6f1c7c8209aada7cdea2eab39e5b5dc0c87fde6d0953d5d8d
MD5 f37ead1c0993ed1e711487a76f709f60
BLAKE2b-256 738fb4cde20a68aafa036749f8a524add0b43fbccd240ecd6107feff74b889f3

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: PyStats-0.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 171.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e33ac22886af645f7fd7108f7998119be55f5b4bf88cf172e5b37fd8f061daa6
MD5 0cf34e50249fcb4dca9c8ddb934f4af7
BLAKE2b-256 44de3e4a5cc5d4a3c4af142b90e36feca5f038e792a73a4c5836b5a79311a570

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: PyStats-0.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 133.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 953c37f82ab0db55d7a15c687b632b4fb64dbd6de848550d474fdf2e2309cf50
MD5 3b2c9316858a5e88f8768ecb94e8193e
BLAKE2b-256 126d29cb2d58ee2bd1057d194165ee68deeb1304b0686f4e070873bab38c5cf4

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: PyStats-0.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 106.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3fe707a0d242c3567d4327376fc58fa27d098e1e62048a10e98a8a3bf693a974
MD5 04560085ba9c99f7fb6505924e378271
BLAKE2b-256 65f57b7a0a8e543c97b006db6bfbc7727042285db7cd43238f350dcad5df91a1

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: PyStats-0.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 202.0 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5d210e5943189de25e8144ccf112204e7156dc24f04ff7da9d5e90e38fe5fe7f
MD5 2bffa8c7816e8f2c0853e5be123b73d1
BLAKE2b-256 c28edd11a8a02cbc174e86d3f57d926c81e4494869a2387175293a5bfb4580d6

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: PyStats-0.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 204.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cb048389d867f1d08cb946465eb443d2f5d31f4b6fbc1b90671256497129f84f
MD5 cddb4acc86f9fc3835e4eecfc1c6abe2
BLAKE2b-256 d9f7f8aeda2b28459f37792c3dd200bd019ad2e327625c4037b21f43c43b2d5e

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: PyStats-0.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 164.3 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d94d366e07782ee6bc9a03971f850b24ef83fb07f1e4af1e182d6c429264e7e
MD5 80c603a0651324e78f368ae9b6153142
BLAKE2b-256 27abaf983137f62b484e32a339ba9d05f24de167d8ae261fafc571c54e3d858b

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: PyStats-0.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 133.5 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4831cdd2a423d2fac51d0cc2c555cbc65f20cd20953e12fb11d38eb80fae1b68
MD5 ec23e08a5ba7218ea0b42869a127c2d7
BLAKE2b-256 0d8bee3aad1d47b1978592c67390e48172b5acc13314b72b63aa2a6679ca9886

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: PyStats-0.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 106.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a97bbb082aacd52716f239fd5c7bc31689002e407fd4f861528262351aea021a
MD5 a0edb974c2ebbacc5fdbc70052119a55
BLAKE2b-256 fa13ae2d91aef093d11da2fb3d42f82e0172d6f25e559d26ece775f520b7d826

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: PyStats-0.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 202.0 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b7f2cadc388a5424942de8d0a903bb8d1396b975ec2193d0dfad84aa4d73d7a8
MD5 7521244f6872a3d9b3f0d281ff347c63
BLAKE2b-256 3f15a69de05c914d3d87fda50c956ff8f114aacef97dc96bb4dcf3caa5b7f371

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: PyStats-0.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 204.8 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 06943a77dfe1f0be591c245d2db9a9ed775cf0ba370b7e6acef25908f75ff706
MD5 a7dd8fb406b808ef2585850d1291b811
BLAKE2b-256 f9e125e5d98fbd0a1316f71bb486c3b2d41530876a33be1ecf667514900ac455

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: PyStats-0.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 164.3 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65c6e1eb01ab0ed6d31ece3e8208443394e03d9ceffa1f853a5ddfab2acf78f5
MD5 f8418e511abb1df878b4d7a9a16c8015
BLAKE2b-256 3ded75e2f6901b14a90bc84dcf388492474312472e01e9587efcb2e53c517890

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: PyStats-0.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 133.5 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 19cfdffd3c624c4ec05efec08376d3d05f58f30c396980c28e58f7d3f5a61b07
MD5 c4455ac569b47968ffef685b33dbd8b0
BLAKE2b-256 c72a3a340df1bff78b0e3c8246333df820bb830fd4b197d5ed7deea7f0ffe45b

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: PyStats-0.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 106.5 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 bbf3cc7d35885ebc98b8b487e79dcfac5333b4e8a99743833a005cab0b230c02
MD5 8ed367def6bb943eedd3c2165246d457
BLAKE2b-256 ce4d510c97a6744612fc6eb17d1980973a021ab36dad53275473bca08980341c

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: PyStats-0.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 202.0 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d4bcbb2f091da78fa7332c13252ce76927581b60244fb54d5982e912c9b5a80d
MD5 b10b3d14c5ca45289d55517fb859ab56
BLAKE2b-256 49c834807d8f6cb5b3cd100cbdf1c8eb287715b0c9f5f04d4f4a20d3d33fff8f

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: PyStats-0.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 204.8 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7f3639124ce469bb17a33740c21e2f053b403c9fe022e74b89908e3e8718a603
MD5 668b9b06cfb36833e9f298f4cfdd9b88
BLAKE2b-256 9c9894905ef37200e40e1611c838a44c12656018df9157d9bc0503fb5b0c9da9

See more details on using hashes here.

File details

Details for the file PyStats-0.1-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: PyStats-0.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 164.3 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for PyStats-0.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35891ad2111570b3253782bff8064f3b1056478bbd592aaa7b9ad5f4b24f0e5e
MD5 49b6c322539edfc29e47d60ae6b41e99
BLAKE2b-256 45b0091c794f16e5d1523a1d05c75cdf20e18e7b5e90253035d863579eb2b7d4

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