Gaussian Theorem: A Python Package for Gaussian and Binomial Distributions
- Introduction
- Features
- Installation
- Usage
- Project Structure
- Examples
- Testing
- Contributing
- License
- Acknowledgments
- Contact
Gaussian Theorem is a Python package that provides classes for working with Gaussian and Binomial distributions. This package is designed to make it easy for developers and data scientists to perform calculations, visualize distributions, and integrate statistical functionality into their projects.
-
Gaussian Distribution:
- Calculate mean and standard deviation.
- Generate probability density function (PDF) values.
- Perform distribution addition.
-
Binomial Distribution:
- Calculate mean and standard deviation from given probabilities and sample sizes.
- Visualize distributions with histograms.
- Plot PDFs for Binomial distributions.
You can install the package directly from PyPI using pip
. Make sure you have Python 3.x installed on your machine.
pip install gaussian_theorems
If you prefer installing from the source, follow these steps:
1. Clone the repository:
git clone https://github.com/Dharren09/Gaussian_Theorem.git
cd Gaussian_Theorem
2. Install the required dependencies:
pip install -r requirements.txt
3. Install the Package:
python setup.py install
# Example code demonstrating how to use the Gaussian class
from Gaussian_Theorems.gaussiandistribution import Gaussian
# Create a Gaussian distribution instance
gaussian = Gaussian(25, 4)
# Read data from a file (replace 'data.txt' with your data file)
gaussian.read_data_file('datasets/numbers.txt')
# Calculate mean and standard deviation
mean = gaussian.calculate_mean()
stdev = gaussian.calculate_stdev()
# Print the Gaussian distribution characteristics
print(gaussian)
# Plot histogram and PDF
gaussian.plot_histogram_pdf()
The project is structured as follows:
GAUSSIAN_THEOREM/
|-- Gaussian_Theorems/
| |-- __init__.py
| |-- gaussiandistribution.py
| |-- generaldistribution.py
|-- Binomialdistributions/
| |-- __init__.py
| |-- binomialdistributions.py
|-- tests/
| |-- __init__.py
| |-- tests.py
|-- setup.py
|-- License
|-- CODE_OF_CONDUCT.md
|-- contribution_guidelines.md
|-- requirements.txt
|-- datasets/
| |-- numbers.txt
| |-- numbers_binomial.txt
|-- build
To run tests, execute the following command:
python -m unittest tests.tests
We welcome contributions! If you find a bug or have an enhancement idea, please open an issue or submit a pull request. Please check our Contribution Guidelines for details.
This project is licensed under the MIT License - see the LICENSE file for details.
The project is inspired by the need for a simple yet powerful Python package for working with statistical distributions. Special thanks to the Matplotlib, Scikit-learn, Scipy teams for their excellent libraries Plus Udacity Data Science instructors for their immersive contributions towards my knowlegde base.
For any questions or feedback, feel free to reach out:
Email: dharrenpius@outlook.com Twitter: @iamdevdharrenzug GitHub: Dharren09