statslibx 0.2.4__tar.gz → 0.2.5__tar.gz

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.
Files changed (27) hide show
  1. {statslibx-0.2.4/statslibx.egg-info → statslibx-0.2.5}/PKG-INFO +13 -8
  2. {statslibx-0.2.4 → statslibx-0.2.5}/README.md +12 -6
  3. {statslibx-0.2.4 → statslibx-0.2.5}/pyproject.toml +1 -2
  4. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx/__init__.py +4 -4
  5. statslibx-0.2.5/statslibx/computational.py +1059 -0
  6. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx/preprocessing/__init__.py +3 -34
  7. {statslibx-0.2.4 → statslibx-0.2.5/statslibx.egg-info}/PKG-INFO +13 -8
  8. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx.egg-info/SOURCES.txt +1 -1
  9. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx.egg-info/requires.txt +0 -1
  10. statslibx-0.2.4/statslibx/computacional.py +0 -37
  11. {statslibx-0.2.4 → statslibx-0.2.5}/MANIFEST.in +0 -0
  12. {statslibx-0.2.4 → statslibx-0.2.5}/setup.cfg +0 -0
  13. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx/cli.py +0 -0
  14. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx/datasets/Cocoa_Bubbles_Investment_Nigeria_Ghana_1980_2023.xlsx +0 -0
  15. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx/datasets/__init__.py +0 -0
  16. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx/datasets/course_completion.csv +0 -0
  17. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx/datasets/iris.csv +0 -0
  18. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx/datasets/penguins.csv +0 -0
  19. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx/datasets/sp500_companies.csv +0 -0
  20. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx/datasets/titanic.csv +0 -0
  21. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx/descriptive.py +0 -0
  22. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx/inferential.py +0 -0
  23. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx/utils.py +0 -0
  24. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx.egg-info/dependency_links.txt +0 -0
  25. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx.egg-info/entry_points.txt +0 -0
  26. {statslibx-0.2.4 → statslibx-0.2.5}/statslibx.egg-info/top_level.txt +0 -0
  27. {statslibx-0.2.4 → statslibx-0.2.5}/tests/test1.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: statslibx
3
- Version: 0.2.4
3
+ Version: 0.2.5
4
4
  Summary: StatsLibx - Librería de estadística descriptiva, inferencial y computacional
5
5
  Author-email: Emmanuel Ascendra Perez <ascendraemmanuel@gmail.com>
6
6
  License: MIT
@@ -19,7 +19,6 @@ Requires-Dist: pandas>=1.5
19
19
  Requires-Dist: matplotlib>=3.5
20
20
  Requires-Dist: numpy>=1.23
21
21
  Requires-Dist: scipy>=1.9
22
- Requires-Dist: polars>=0.16
23
22
  Requires-Dist: scikit-learn>=1.0
24
23
  Requires-Dist: statsmodels>=0.13
25
24
  Requires-Dist: seaborn>=0.11
@@ -31,15 +30,20 @@ Provides-Extra: advanced
31
30
  Requires-Dist: scikit-learn>=1.0; extra == "advanced"
32
31
  Requires-Dist: statsmodels>=0.13; extra == "advanced"
33
32
 
34
- # 📦 StatsLibX
33
+ # 📦 StatsLibX v2.5
34
+
35
+ ![](https://github.com/GhostAnalyst30/StatsLibX/blob/main/StatsLibX.png)
35
36
 
36
37
  StatsLibX es un paquete de Python diseñado para proporcionar una solución sencilla, eficiente y flexible para manejar volumenes de datos.
37
38
 
38
- Este proyecto surge con la idea de ofrecer una alternativa moderna, intuitiva y ligera que permita a desarrolladores y entusiastas integrar la **estadistica descriptiva, inferencial y computacional (En desarrollo)** sin complicaciones, con multiples funcionalidades y utilidades pensadas para el futuro.
39
+ Este proyecto surge con la idea de ofrecer una alternativa moderna, intuitiva y ligera que permita a desarrolladores y entusiastas integrar la **estadistica descriptiva, inferencial y computacional** sin complicaciones, con multiples funcionalidades y utilidades pensadas para el futuro.
40
+
39
41
 
40
- Pagina Web: [StatsLibX](https://ghostanalyst30.github.io/StatsLibX/Documentation_Page/index.html)
42
+ | **Documentacion:** | **GitHub del Proyecto:** |
43
+ |-------------------|--------------------------|
44
+ [Documentacion StatsLibX](https://ghostanalyst30.github.io/StatsLibX/Documentation_Page/index.html) | [Github/StatsLibX](https://github.com/GhostAnalyst30/StatsLibX)
45
+ |**Version:** 0.2.5 | **Autor:** Emmanuel Ascendra |
41
46
 
42
- GitHub del Proyecto: [https://github.com/GhostAnalyst30/StatsLibX](https://github.com/GhostAnalyst30/StatsLibX)
43
47
 
44
48
  ## ✨ Características principales
45
49
 
@@ -55,12 +59,13 @@ GitHub del Proyecto: [https://github.com/GhostAnalyst30/StatsLibX](https://githu
55
59
 
56
60
  ## 🚀 Ejemplo rápido
57
61
  ```python
58
- from statslibx import DescriptiveStats, InferentialStats, UtilsStats
62
+ from statslibx import DescriptiveStats, InferentialStats, ComputationalStats, UtilsStats
59
63
  from statslibx.datasets import load_iris()
60
64
 
61
65
  data = load_iris()
62
66
 
63
- stats = DescriptiveStats(data) # InferentialStats(data), UtilsStats()
67
+ stats = DescriptiveStats(data)
68
+ # InferentialStats(data), ComputationalStats(data), UtilsStats()
64
69
 
65
70
  stats.summary()
66
71
  ```
@@ -1,12 +1,17 @@
1
- # 📦 StatsLibX
1
+ # 📦 StatsLibX v2.5
2
+
3
+ ![](https://github.com/GhostAnalyst30/StatsLibX/blob/main/StatsLibX.png)
2
4
 
3
5
  StatsLibX es un paquete de Python diseñado para proporcionar una solución sencilla, eficiente y flexible para manejar volumenes de datos.
4
6
 
5
- Este proyecto surge con la idea de ofrecer una alternativa moderna, intuitiva y ligera que permita a desarrolladores y entusiastas integrar la **estadistica descriptiva, inferencial y computacional (En desarrollo)** sin complicaciones, con multiples funcionalidades y utilidades pensadas para el futuro.
7
+ Este proyecto surge con la idea de ofrecer una alternativa moderna, intuitiva y ligera que permita a desarrolladores y entusiastas integrar la **estadistica descriptiva, inferencial y computacional** sin complicaciones, con multiples funcionalidades y utilidades pensadas para el futuro.
8
+
6
9
 
7
- Pagina Web: [StatsLibX](https://ghostanalyst30.github.io/StatsLibX/Documentation_Page/index.html)
10
+ | **Documentacion:** | **GitHub del Proyecto:** |
11
+ |-------------------|--------------------------|
12
+ [Documentacion StatsLibX](https://ghostanalyst30.github.io/StatsLibX/Documentation_Page/index.html) | [Github/StatsLibX](https://github.com/GhostAnalyst30/StatsLibX)
13
+ |**Version:** 0.2.5 | **Autor:** Emmanuel Ascendra |
8
14
 
9
- GitHub del Proyecto: [https://github.com/GhostAnalyst30/StatsLibX](https://github.com/GhostAnalyst30/StatsLibX)
10
15
 
11
16
  ## ✨ Características principales
12
17
 
@@ -22,12 +27,13 @@ GitHub del Proyecto: [https://github.com/GhostAnalyst30/StatsLibX](https://githu
22
27
 
23
28
  ## 🚀 Ejemplo rápido
24
29
  ```python
25
- from statslibx import DescriptiveStats, InferentialStats, UtilsStats
30
+ from statslibx import DescriptiveStats, InferentialStats, ComputationalStats, UtilsStats
26
31
  from statslibx.datasets import load_iris()
27
32
 
28
33
  data = load_iris()
29
34
 
30
- stats = DescriptiveStats(data) # InferentialStats(data), UtilsStats()
35
+ stats = DescriptiveStats(data)
36
+ # InferentialStats(data), ComputationalStats(data), UtilsStats()
31
37
 
32
38
  stats.summary()
33
39
  ```
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "statslibx"
7
- version = "0.2.4"
7
+ version = "0.2.5"
8
8
  description = "StatsLibx - Librería de estadística descriptiva, inferencial y computacional"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -31,7 +31,6 @@ dependencies = [
31
31
  "matplotlib>=3.5",
32
32
  "numpy>=1.23",
33
33
  "scipy>=1.9",
34
- "polars>=0.16",
35
34
  "scikit-learn>=1.0",
36
35
  "statsmodels>=0.13",
37
36
  "seaborn>=0.11",
@@ -1,16 +1,16 @@
1
1
  """
2
2
  StatsLibx - Librería de Estadística para Python
3
3
  Autor: Emmanuel Ascendra
4
- Versión: 0.2.4
4
+ Versión: 0.2.5
5
5
  """
6
6
 
7
- __version__ = "0.2.4"
7
+ __version__ = "0.2.5"
8
8
  __author__ = "Emmanuel Ascendra"
9
9
 
10
10
  # Importar las clases principales
11
11
  from .descriptive import DescriptiveStats, DescriptiveSummary
12
12
  from .inferential import InferentialStats, TestResult
13
- from .computacional import ComputationalStats
13
+ from .computational import ComputationalStats
14
14
  from .utils import UtilsStats
15
15
  from .preprocessing import Preprocessing
16
16
  from .datasets import load_dataset, generate_dataset
@@ -37,7 +37,7 @@ def welcome():
37
37
  print(f"\nClases disponibles:")
38
38
  print(f" - DescriptiveStats: Estadística descriptiva")
39
39
  print(f" - InferentialStats: Estadística inferencial")
40
- print(f" - ComputacionalStats: En desarrollo")
40
+ print(f" - ComputacionalStats: Estadística computacional")
41
41
  print(f" - UtilsStats: Utilidades Extras")
42
42
  print(f"\nMódulos disponibles:")
43
43
  print(f" - Datasets: Carga de Datasets")