Metadata-Version: 2.1
Name: intelligentML
Version: 0.1.1
Summary: An igent 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.
Home-page: https://github.com/Nasif-Azam/intelligentML
Author: Nasif Azam
Author-email: nasifazam07@gmail.com
License: MIT license
Keywords: intelligentML
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Iltelligent Machine Learning Task using Python

[![forthebadge made-with-python](http://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/)                 
[![Python 3.6](https://img.shields.io/badge/python-3.6-blue.svg)](https://www.python.org/downloads/release/python-360/)
[![image](https://img.shields.io/pypi/v/intelligentML.svg)](https://pypi.python.org/pypi/intelligentML)
[![image](https://img.shields.io/conda/vn/conda-forge/intelligentML.svg)](https://anaconda.org/conda-forge/intelligentML)


**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.**


-   Free software: MIT license
-   Documentation: https://Nasif-Azam.github.io/intelligentML

## Functionality of the Package

- hd_and_dp(dataPath) : Both handle duplication and data preprocessing by sending the dataset url or path link.
- handle_duplication(dataPath) : Handle duplication by sending the dataset url or path link.
- dataPreprocessing(dataPath) : Data preprocessing by sending the dataset url or path link.

## Usage

- Make sure you have Python installed in your system.
- Run Following command in the CMD.
 ```
  pip install intelligentML
  ```
## Example-1

 ```
# test.py:

from intelligentML import hd_and_dp
url = "example.csv"
finalDataset = hd_and_dp(url)
print(f"Final Preprocessed Dataset: \n{finalDataset}")
  ```
## Example-2

 ```
# test.py:

from intelligentML import handle_duplication
url = "example.csv"
NoDupDataset = handle_duplication(url)
print(f"Dataset Without Duplications: \n{NoDupDataset}")
  ```
## Example-3

 ```
# test.py:

from intelligentML import dataPreprocessing
url = "example.csv"
PreproccessedDataset = dataPreprocessing(url)
print(f"Preprocessed Dataset: \n{PreproccessedDataset}")
  ```

## Run the following Script.
 ```
  python test.py
 ```

## Note 
- It is a very tiny package according to the large ML areas. I will update the package till to advance.
