_Permite realizar operaciones estadisticas de manera sencilla_
Project description
Excel en Python
Una libreria para hacer mediciones estadísticas basicas de datos
Instalación
Instalar la librería en tu proyecto
pip install estadistica-facil
Comenzando 🚀
Estas instrucciones te permitirán obtener una copia del proyecto en funcionamiento en tu máquina local para propósitos de desarrollo y pruebas.
Mira Deployment para conocer como desplegar el proyecto.
Pre-requisitos 📋
clona el proyecto
git clone https://github.com/PeraBaja/excel-python.git
instala numpy
pip install numpy
Ejemplos
import estadistica_facil as e
datos = (2, 2, 3, 4, 5, 6, 7)
agrupación = e.Agrupacion(datos, cantidadDeIntervalos=4, redondearAbajo=False)
frecuencias = e.Frecuencias(agrupación, datos)
mediciones_agrupación = e.MedicionesAgrupacion(agrupación, frecuencias, datos)
media = mediciones_agrupación.media()
mediana = mediciones_agrupación.mediana()
moda = mediciones_agrupación.moda()
print(media, mediana, moda) # Ouput: 4.71, 4.5, 3
muestra = e.Muestra(datos)
moda = muestra.media()
mediana = muestra.mediana()
moda = muestra.moda()
print(media, mediana, moda) # Ouput: 4.71 5 2
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file estadistica_facil-1.0.18.tar.gz.
File metadata
- Download URL: estadistica_facil-1.0.18.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
951525f0205990fe7b15da7f1ec5d250e559ee323babbc7e41c06fdd45271165
|
|
| MD5 |
b3fd0c17f682fbdd84583767840ca0ef
|
|
| BLAKE2b-256 |
27defdf671389b02ae50e61999d508f2d05a235a149041598cd3f7eac8c27475
|
File details
Details for the file estadistica_facil-1.0.18-py2.py3-none-any.whl.
File metadata
- Download URL: estadistica_facil-1.0.18-py2.py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8092ee3b77ab8dce2360843b13312362d0e35f0d4d7ccf4e4ee0100d5fbc905d
|
|
| MD5 |
c81ffccce78585157e3099e1abcbaf4e
|
|
| BLAKE2b-256 |
40da489aa8d65e350e16f987becab3915b8de5f6b8ad5eabdef31dc98b92a1d4
|