Metadata-Version: 2.1
Name: pyprob-distributions
Version: 0.2
Summary: Gaussian and Binominal distributions
Home-page: https://github.com/AdithyaYelloju/pyprob-distributions
Author: Adithya Yelloju
Author-email: adithyayelloju@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown

# pyprob-distributions
Gaussian and Binominal distributions

### Guassian distribution:
```
>>> from pyprob_distributions import Gaussian
>>> Gaussian(25, 2)
mean 25, standard deviation 2
```

### Guassian distribution:
```
>>> from pyprob_distributions import Binomial
>>> Binomial(0.4, 20)
mean 8.0, standard deviation 2.1908902300206643, p 0.4, n 20
```

### Describtion

You can use `Gaussian` and `Binominal` classes. `Gaussian` supports distribution addition, `Binominal` supports distribution addition when both distribution have same probability.

### Installation
```
pip install pyprob-distributions
```


See the source for this project here:
<https://github.com/AdithyaYelloju/pyprob-distributions>.


