Skip to main content

Implementation of the log-uniform and modified log-uniform distributions

Project description

A simple implementation of the log-uniform and modified log-uniform distributions.

License MIT PyPI version

How to use

Install it from pip (LogUniform only depends on numpy)

pip install LogUniform

and it’s ready to use from Python

import loguniform

LogUniform comes with two simple classes, LogUniform and ModifiedLogUniform. They are intended to mimic the API of scipy.stats (actually, the log-uniform distribution is already implemented in scipy.stats.reciprocal; the two implementations are compatible).

from loguniform import LogUniform, ModifiedLogUniform

d1 = LogUniform(a=1, b=1000)
d2 = ModifiedLogUniform(knee=1, b=1000)

both distributions d1 and d2 now have 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.

License

Copyright 2018 João Faria.

LogUniform is free software made available under the MIT License. For details see the LICENSE file.

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

LogUniform-1.0.1.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distributions

LogUniform-1.0.1-py3.6.egg (8.4 kB view hashes)

Uploaded Source

LogUniform-1.0.1-py3-none-any.whl (10.3 kB view hashes)

Uploaded Python 3

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