MLEase

Simplify machine learning tasks with easy-to-use tools and utilities.


Keywords
python, machine, learning, data, science
License
MIT
Install
pip install MLEase==0.0.2

Documentation

Machine Learning Ease

License: MIT

MachLearnEase is a Python package that simplifies machine learning tasks by providing easy-to-use tools and utilities.

Installation

You can install MLEase using pip:

pip install MLEase

Usage

MLEase provides a variety of tools to streamline your machine learning workflow. Here's an example of how to use the MissingValueImputer and OutlierRemoverScaler classes:

from mlease import MissingValueImputer, OutlierRemoverScaler
import pandas as pd

# Example usage of MissingValueImputer
imputer = MissingValueImputer(strategy='mean')
data = {'A': [1, 2, None, 4], 'B': [5, None, 7, 8]}
df = pd.DataFrame(data)
imputed_df = imputer.fit_transform(df)

# Example usage of OutlierRemoverScaler
scaler = OutlierRemoverScaler()
transformed_data = scaler.fit_transform(data)

#Example of Bucketizer
bucketizer = Bucketizer(num_classes=3, use_qcut=True, automatic_num_classes=True)
transformed_data = bucketizer.fit_transform(data)

License

This project is licensed under the MIT License - see the LICENSE file for details.