Skip to main content

stats library

Project description

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))

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyez_stats-0.1.1.tar.gz (24.9 kB view hashes)

Uploaded Source

Built Distribution

pyez_stats-0.1.1-py3-none-any.whl (28.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page