stats265
version
Un paquete PIP que con suerte tendrá todas las distribuciones de STATS265 (estadísticas 1) - Ualberta pronto
Actualmente:
Si es reacio al riesgo, como siempre, puede probarlo primero en un entorno virtual
Las pruebas se realizaron con la biblioteca Unittest https://docs.python.org/3/library/unittest.html
* Calling a distribution
* from stats265 import Bernoulli
* g = Bernolli(p = 0.7)
* from stats265 import Gaussian
* g = Gaussian(mean, stdev)
* from stats265 import Binomial
* g = Binomial(p = 0.7, n = 20)
* from stats265 import Poisson
* g = Poisson(mean)
* Methods of distributions (varies for obvious reasons)
* read_data_file(file_name)
reads the data in said file into our object, and now we can play around with the data
* calculate_mean()
calculates and returns the mean
* calculate_stdev()
calculates and returns the standard deviation of the distribution
* plot_histogram()
plots a histogram of the data
* pdf(x)
returns probability density function for a value x
* plot_histogram_pdf()
Plots histogram of data and pdf
* Distribution_1 + Distribution_2 (__add__)
Add a two distributions
same type only for now
* print(Distribution) (__repr__)
Allows for representation on a print call
Instalación:
Dependencias: