Implementation of the Kumaraswamy distribution
Project description
A simple implementation of the Kumaraswamy distribution.
How to use
Install it from pip (kumaraswamy only depends on numpy)
pip install kumaraswamy
and it’s ready to use from Python
import kumaraswamy
The package provides one simple class called kumaraswamy, which implements the distribution. It is intended to mimic the API of scipy.stats.
from kumaraswamy import kumaraswamy
d1 = kumaraswamy(a=0.5, b=0.5)
the d1 object now has methods
pdf(x) and logpdf(x)
cdf(x)
rvs(size)
to calculate the probability density function (and its logarithm), the cumulative density function, and to get random samples from the distribution.
Also available are some basic properties specific to the distribution
d1.mean
d1.var
d2.mode # see help(d2.mode) for details
License
Copyright 2018 João Faria.
kumaraswamy is free software made available under the MIT License. For details see the LICENSE file.
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
Built Distribution
Hashes for kumaraswamy-0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7fad521a03367a24e19be19bb99a258e13f0ab7540fc2c278afcaecae92d0ef9 |
|
MD5 | 8c08215e0d9131c084bb873eaa14703b |
|
BLAKE2b-256 | a1c4877805f75e278f972d209999da9d6085356d7e3442668945611dbc5640c7 |