Gaussian and Binomial distributions Python Package for Machine Learning and Data Science
distributions_gauss_bi is a Python module/package for Machine Learning and Data Science built for Gaussian and Binomial distributions. This package is distributed under the MIT License.
To install simply run(Commandline);
pip install distributions-gauss-bi
or
conda install distributions-gauss-bi
PyPI link: https://pypi.org/project/distributions-gauss-bi/
For this test version of the package I would recommend running it on a Virtual Environment
pip install -i https://test.pypi.org/simple/ distributions-gauss-bi
TestPyPI link: https://test.pypi.org/project/distributions-gauss-bi/
On your commandline or favorite editor run below python code after installation.
>>> from distributions_gauss_bi import Gaussian, Binomial
>>> Gaussian(38,17)
>>> Binomial(0.4, 35)
There are many ways to contribute to distributions_gauss_bi, with the most common ones being contribution of code or documentation to the project. Improving the documentation is no less important than improving the module itself. If you find a typo in the documentation or have made improvements on pseudocode or source code, do not hesitate to submit a GitHub pull request.
If you would like to review the Gaussian (normal) distribution and binomial distribution, here are a few resources:
Dunder or magic methods in Python are the methods having two prefix and suffix underscores in the method name. Dunder here means “Double Under (Underscores)”. These are commonly used for operator overloading. eg __init__
For instance if you want to add two Gaussian distributions to create another object of a third Gaussian distribution;