Skip to content

Institute-for-Risk-and-Uncertainty/pba-for-python

Repository files navigation

Tests Documentation Status Code Style: Black

PBA

PBA is a probability bound analysis library for Python that allows one to create and calculate with probability distributions, intervals, and probability boxes (p-boxes) within Python.

Probability distributions can be specified using pba.distname(**args) where distname is any of the named distributions that scipy.stats supports. For instance, pba.N(0,1) specifies a Normal distribution with mean 0 and variance 1. P-boxes can be created by using interval arguments for these distributions. Intervals can be created using pba.I(left, right) where left and right are expressions for the lower and upper limits of the interval.

Features

Installation

Install PBA by running:

    pip install pba

Contribute & Support

If you are having issues or would like to help with development or have interesting use cases, please let us know.
You can email [email protected].

License

The project is licensed under the MIT License.

This conversion keeps the original structure and makes it compatible with Markdown format.