statslibx 0.1.6__py3-none-any.whl → 0.1.8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,54 +1,37 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: statslibx
3
- Version: 0.1.6
4
- Summary: Librería de estadística descriptiva e inferencial para Python
5
- Home-page: https://github.com/Immanuel3008/StatsLibX
6
- Author: Emmanuel Ascendra Perez
7
- Author-email: ascendraemmanuel@gmail.com
3
+ Version: 0.1.8
4
+ Summary: StatsLibx - Librería de estadística descriptiva e inferencial
5
+ Author-email: Emmanuel Ascendra Perez <ascendraemmanuel@gmail.com>
6
+ License: MIT
8
7
  Classifier: Development Status :: 3 - Alpha
9
8
  Classifier: Intended Audience :: Science/Research
10
9
  Classifier: Topic :: Scientific/Engineering :: Mathematics
11
10
  Classifier: License :: OSI Approved :: MIT License
12
11
  Classifier: Programming Language :: Python :: 3
13
- Classifier: Programming Language :: Python :: 3.8
14
12
  Classifier: Programming Language :: Python :: 3.9
15
13
  Classifier: Programming Language :: Python :: 3.10
16
14
  Classifier: Programming Language :: Python :: 3.11
17
15
  Classifier: Programming Language :: Python :: 3.12
18
16
  Requires-Python: >=3.8
19
17
  Description-Content-Type: text/markdown
20
- Requires-Dist: numpy>=1.20.0
21
- Requires-Dist: pandas>=1.3.0
22
- Requires-Dist: scipy>=1.7.0
23
- Requires-Dist: matplotlib>=3.4.0
18
+ Requires-Dist: pandas>=1.5
19
+ Requires-Dist: polars>=0.20
24
20
  Provides-Extra: viz
25
- Requires-Dist: seaborn>=0.11.0; extra == "viz"
26
- Requires-Dist: plotly>=5.0.0; extra == "viz"
21
+ Requires-Dist: seaborn>=0.11; extra == "viz"
22
+ Requires-Dist: plotly>=5.0; extra == "viz"
27
23
  Provides-Extra: advanced
28
- Requires-Dist: scikit-learn>=1.0.0; extra == "advanced"
29
- Requires-Dist: statsmodels>=0.13.0; extra == "advanced"
30
- Provides-Extra: all
31
- Requires-Dist: seaborn>=0.11.0; extra == "all"
32
- Requires-Dist: plotly>=5.0.0; extra == "all"
33
- Requires-Dist: scikit-learn>=1.0.0; extra == "all"
34
- Requires-Dist: statsmodels>=0.13.0; extra == "all"
35
- Dynamic: author
36
- Dynamic: author-email
37
- Dynamic: classifier
38
- Dynamic: description
39
- Dynamic: description-content-type
40
- Dynamic: home-page
41
- Dynamic: provides-extra
42
- Dynamic: requires-dist
43
- Dynamic: requires-python
44
- Dynamic: summary
45
-
46
- # 📦 Descripción para PyPI (Plantilla Profesional)
24
+ Requires-Dist: scikit-learn>=1.0; extra == "advanced"
25
+ Requires-Dist: statsmodels>=0.13; extra == "advanced"
26
+
27
+ # 📦 StatsLibX
47
28
 
48
29
  StatsLibX es un paquete de Python diseñado para proporcionar una solución sencilla, eficiente y flexible para manejar volumenes de datos.
49
30
 
50
31
  Este proyecto surge con la idea de ofrecer una alternativa moderna, intuitiva y ligera que permita a desarrolladores y entusiastas integrar la **estadistica descriptiva e inferencial** sin complicaciones, con multiples funcionalidades y utilidades pensadas para el futuro.
51
32
 
33
+ GitHub del Proyecto: [text](https://github.com/GhostAnalyst30/StatsLibX)
34
+
52
35
  ## ✨ Características principales
53
36
 
54
37
  - ⚡ Rápido y eficiente: optimizado para ofrecer un rendimiento suave incluso en tareas exigentes.
@@ -64,16 +47,28 @@ Este proyecto surge con la idea de ofrecer una alternativa moderna, intuitiva y
64
47
  ## 🚀 Ejemplo rápido
65
48
  ```python
66
49
  from statslibx import DescriptiveStats, InferentialStats, UtilsStats
50
+ from statslibx.datasets import load_iris()
51
+
52
+ data = load_iris()
67
53
 
68
54
  stats = DescriptiveStats(data) # InferentialStats(data), UtilsStats()
69
- stats.help()
55
+
56
+ stats.summary()
70
57
  ```
58
+ Para ver mas funciones: [text](https://github.com/GhostAnalyst30/StatsLibX/blob/main/how_use_statslibx.ipynb)
71
59
 
72
60
  ## 📦 Instalación
73
61
  ```bash
74
62
  pip install statslibx
75
63
  ```
76
64
 
65
+ ## 👩‍💻 ¡Usalo en la terminal! (De forma preliminar)
66
+ ```bash
67
+ statslibx describe .\archive.csv # Devuelve una descripcion de la data
68
+ statslibx quality .\archive.csv # Devuelve la calidad de los datos
69
+ statslibx preview .\archive.csv # Devuelve una visualizacion de los datos
70
+ ```
71
+
77
72
  🤝 Contribuciones
78
73
 
79
74
  ¡Todas las mejoras e ideas son bienvenidas!
@@ -0,0 +1,15 @@
1
+ statslibx/__init__.py,sha256=KeEoEZVPUR_PZACWoCpS_2l6luPbEee7VRlcrLgbKQQ,1490
2
+ statslibx/cli.py,sha256=DqXaoP85n9xgLDlFnEkeqj-HJG0_IKX0uSqxRcHbzII,1122
3
+ statslibx/computacional.py,sha256=Nv8wk67RUuuv15oBRu2XPp0_k7O4ZgmT51vThH2OuFk,35
4
+ statslibx/descriptive.py,sha256=r5D4reP1Cdzsu1tSLmf2OEaFAkGvHSd3FIYfUclEaRU,60178
5
+ statslibx/inferential.py,sha256=H0R6g3dJFk-53m1bKldrXObgk0SSmpcdqQg_tIgRKBI,79169
6
+ statslibx/io.py,sha256=v7pxpmlEMeKyfXftl3WbkUtC9FOh1pymz7MmKPPNw98,493
7
+ statslibx/probability.py,sha256=MUME4eXWzbdU93F-QdKwmmyd9IgZK1flFUYQHitp10o,33
8
+ statslibx/utils.py,sha256=iJzt0jDacaoUfjtp4dU2PFuIBEheMP9Qrq-HnLTW_Qw,66515
9
+ statslibx/datasets/__init__.py,sha256=GuUl_7-d6YanuDFht1dwB1bFrqjShvKh1m-iRYAbYZE,6875
10
+ statslibx/preprocessing/__init__.py,sha256=ZwdwjBodxeOry-umJ__6yUSeubpRlZg41yve366ArkY,7395
11
+ statslibx-0.1.8.dist-info/METADATA,sha256=uyhAd0xghADIfVee7WzDp76nLA2snjqQcNayio_UrIc,2835
12
+ statslibx-0.1.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
+ statslibx-0.1.8.dist-info/entry_points.txt,sha256=bkCY7JDWNCZFE3I4sjgJ2oGrUgoBBbCbYmWkBAymT70,49
14
+ statslibx-0.1.8.dist-info/top_level.txt,sha256=eeYZXyFm0hIjuI0ba3wF6XW938Mv9tv7Nk9qgjYfCtU,10
15
+ statslibx-0.1.8.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ statslibx = statslibx.cli:main