statslibx 0.1.4__tar.gz → 0.1.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: statslibx
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: Librería de estadística descriptiva e inferencial para Python
5
5
  Home-page: https://github.com/Immanuel3008/StatsLibX
6
6
  Author: Emmanuel Ascendra Perez
@@ -9,7 +9,7 @@ except FileNotFoundError:
9
9
 
10
10
  setup(
11
11
  name="statslibx",
12
- version="0.1.4",
12
+ version="0.1.5",
13
13
  author="Emmanuel Ascendra Perez",
14
14
  author_email="ascendraemmanuel@gmail.com",
15
15
  description="Librería de estadística descriptiva e inferencial para Python",
@@ -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.4
4
+ Versión: 0.1.5
5
5
  """
6
6
 
7
- __version__ = "0.1.4"
7
+ __version__ = "0.1.5"
8
8
  __author__ = "Emmanuel Ascendra"
9
9
 
10
10
  # Importar las clases principales
@@ -8,6 +8,7 @@ def load_dataset(name: str):
8
8
  - iris.csv
9
9
  - penguins.csv
10
10
  - sp500_companies.csv
11
+ - titanic.csv
11
12
  """
12
13
  data_bytes = pkgutil.get_data("statslibx.datasets", name)
13
14
  if data_bytes is None: