Statistics is already hard enough to understasnd, let alone code them. This package is made with the sole purpose of making available statistical tools available in Python. Currently, this package has two main classes namely: Gaussian and Binomial. Check out their docs on how to use it.
- Easily create instances of gaussian distribution by passing the mean and standard deviationof data.
- Easily create instances of binomial distribution by passing the probability and standard deviation.
- Calculate mean and standard deviation of the data.
- Read file using in-built functions.
- Add Gaussian or Binomial instances simply using the + operator.
- Easy format for viewing details of an instance.
Type pip install EasyStatistics
in your terminal. The package will be
installed and you will be able to use it.
NOTE This package can be installed with later versions of pip. It contains .whl file. If you run into an error while
pip install EasyStatistics
, just update the pip and try again. It will work fine.
In your project, you can either import Gaussian or Binomial (for now).
For Gaussian, type: from EasyStatistics import Gaussian
For Binomial, type: from EasyStatistics import Binomial
This project's lifeline will be open source contribution. Open issues for enhancing the package or certain bugs that you might find. Read further information in CONTRIBUTING.md file
Current version for this package is 0.4
Versions are represented using the following format: major.minor.patch