pyez_stats
A python library that allows for easy statistical analysis.
This library has functionality for hypothesis testing, Bayesian statistical analysis, linear regression and multiple linear regression and principle component analysis. The distribution module allows the user to fit passed in data to multiple distributions and calculate mean, median and variance and other statistical values. It also allows for calculating probability density functions, cumulative distribution functions and percentiles of the data.
The main class in this library is the Data class that incorporates every other class into it allowing for easy statistical analysis in one array like data structure.
Installation
pip install pyez_stats
Get Started
Below is a simple array of data passed into our Data class. We set the model to be a Gaussian distribution, then calculate the mean and probabilty of a certain value.
import pyez_stats as ez
arr = [11, 11, 12, 11, 12, 13, 14, 16, 18, 16, 15]
data = ez.Data(arr)
data.set_model("gaus")
print(data.pdf(12))
print(data.mean())
Using the modules
Below we show how to use multiple of the modules in the pyez_stats library.
Hypothesis Test
hyp_test = data.hypothesis_test("gauss")
print(hyp_test(11, wald_test=True, left_tail=True))
print(hyp_test(11, z_test=True, right_tail=True, sigma=3))
print(hyp_test(11, t_test=True, left_tail=True))
Bayesian Statistics
bays = data.bayesian_statistic(likelihood="gaus", prior="gaus")
bays.set_theta_range([10, 18])
print(bays.plot_posteriors(var = 3))
print(bays.map(var = 3))
Release files for pyez-stats 0.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pyez_stats-0.1.1.tar.gz | 24.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pyez_stats-0.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 53.0 kB
Release files / pyez_stats-0.1.1.tar.gz
| Download URL | pyez_stats-0.1.1.tar.gz |
|---|---|
| Size | 24.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
a9b1a9b65047aa63c148b1975efe323619bfbeeae0931c1061bfd3bdbea309c1
|
|
BLAKE2b-256 checksum How to use checksums |
5481da605211fa8fab7808eb103fd96f24b9b564d9feec5c13405993272d7cdc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.11.5
|
Release files / pyez_stats-0.1.1-py3-none-any.whl
| Download URL | pyez_stats-0.1.1-py3-none-any.whl |
|---|---|
| Size | 28.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
60153fdd31d02207be1e6a1db290cb82b2fcf332fa5b58139b291ae75ba527a3
|
|
BLAKE2b-256 checksum How to use checksums |
ee8e5a74151a0736aeef8bd077e84467f0e56e25998d4ad8f31ba08675b7ecdf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.11.5
|