Library to teach Machine Learning
Project description
MLutilities
This python library aims to provide modules that can be useful to teach Data Analysis and Machine Learning.
Installation: to install this package simple use the following command
pip install mlutilities-udea
Basi Usage
Using the mlutilities library for Exploratory Data Analysis (EDA)
Univariant Analysis
In this example, we demonstrate how to use the mlutilities library to load a dataset, perform the Kolmogorov-Smirnov goodness-of-fit test, and visualize the data.
from mlutilities.datasets import load_dataset
from mlutilities.eda import kolmogorov_test
# First, we load the "penguins" dataset into a Pandas DataFrame.
data = load_dataset(data_set="penguins", load_as="dataframe", n=-1)
# We print the description of the dataset to provide some information about it.
print(data["DESC"])
# We display an image associated with the dataset.
display(data['image'])
# Next, we extract the data from the dataset for further analysis.
df = data["data"]
# We perform the Kolmogorov-Smirnov test on the "bill_depth_mm" variable and plot its histogram.
kolmogorov_test(dataset=df, variable="bill_depth_mm", plot_histogram=True)
You can find more example on the notebooks folder.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mlutilities_udea-0.0.13.tar.gz.
File metadata
- Download URL: mlutilities_udea-0.0.13.tar.gz
- Upload date:
- Size: 51.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.11.0 Linux/6.8.0-1020-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09023688e7bed29d9b53e09a28bdbc22c52398ba39a1e0be2039d5948b9ff654
|
|
| MD5 |
1222fbe94120f3e111a62ba7f8af6145
|
|
| BLAKE2b-256 |
2f67579cdf4ca09d5ef174729078b26987d6abefe3ade1cd85af59f05f103a1c
|
File details
Details for the file mlutilities_udea-0.0.13-py3-none-any.whl.
File metadata
- Download URL: mlutilities_udea-0.0.13-py3-none-any.whl
- Upload date:
- Size: 51.8 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.11.0 Linux/6.8.0-1020-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
661af7170f6f4210ddef3371fe27bfc2ba4e748dc5261b1a4ac7f19ffcdc2ab0
|
|
| MD5 |
f558bdcd116fa284e61e3e576e02916b
|
|
| BLAKE2b-256 |
3ac1985126b17bb153273fcd4e564221f7c456466da67a36a70e6ba3fb50027b
|