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 CHANGED
@@ -1,10 +1,10 @@
1
1
  """
2
2
  StatsLibx - Librería de Estadística para Python
3
3
  Autor: Emmanuel Ascendra
4
- Versión: 0.1.3
4
+ Versión: 0.1.5
5
5
  """
6
6
 
7
- __version__ = "0.1.3"
7
+ __version__ = "0.1.5"
8
8
  __author__ = "Emmanuel Ascendra"
9
9
 
10
10
  # Importar las clases principales
@@ -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.")