statslibx 0.1.3__py3-none-any.whl → 0.1.5__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.
- statslibx/__init__.py +2 -2
- statslibx/datasets/__init__.py +7 -1
- statslibx/datasets/course_completion.csv +100001 -0
- statslibx/datasets/titanic.csv +419 -0
- statslibx/descriptive.py +39 -0
- statslibx/inferential.py +39 -0
- statslibx/utils.py +243 -404
- {statslibx-0.1.3.dist-info → statslibx-0.1.5.dist-info}/METADATA +11 -11
- statslibx-0.1.5.dist-info/RECORD +14 -0
- statslibx-0.1.3.dist-info/RECORD +0 -12
- {statslibx-0.1.3.dist-info → statslibx-0.1.5.dist-info}/WHEEL +0 -0
- {statslibx-0.1.3.dist-info → statslibx-0.1.5.dist-info}/top_level.txt +0 -0
statslibx/__init__.py
CHANGED
statslibx/datasets/__init__.py
CHANGED
|
@@ -3,7 +3,13 @@ import pkgutil
|
|
|
3
3
|
import io
|
|
4
4
|
|
|
5
5
|
def load_dataset(name: str):
|
|
6
|
-
"""Carga un dataset interno del paquete.
|
|
6
|
+
"""Carga un dataset interno del paquete.
|
|
7
|
+
Datasets Disponibles:
|
|
8
|
+
- iris.csv
|
|
9
|
+
- penguins.csv
|
|
10
|
+
- sp500_companies.csv
|
|
11
|
+
- titanic.csv
|
|
12
|
+
"""
|
|
7
13
|
data_bytes = pkgutil.get_data("statslibx.datasets", name)
|
|
8
14
|
if data_bytes is None:
|
|
9
15
|
raise FileNotFoundError(f"Dataset '{name}' no encontrado.")
|