An intelligent machine learning package. A Python library for handling duplicate data and performing data preprocessing on datasets. This library provides functions to identify and remove duplicate rows, handle missing values, and prepare data for analysis. All you have to do just provide the dataset url or path the library automatically do those tasks.
pip install intelligentML
# test.py:
from intelligentML import hd_and_dp
url = "example.csv"
finalDataset = hd_and_dp(url)
print(f"Final Preprocessed Dataset: \n{finalDataset}")
# test.py:
from intelligentML import handle_duplication
url = "example.csv"
NoDupDataset = handle_duplication(url)
print(f"Dataset Without Duplications: \n{NoDupDataset}")
# test.py:
from intelligentML import dataPreprocessing
url = "example.csv"
PreproccessedDataset = dataPreprocessing(url)
print(f"Preprocessed Dataset: \n{PreproccessedDataset}")
python test.py