A Library for Making the Explorartory Data Analysis process easy in single line of codes
Project description
Preprocessing Pipeline
Overview
The Preprocessing Pipeline is a comprehensive Python-based tool designed to facilitate the preprocessing of data by performing initial data inspection, handling missing values, converting data types, managing outliers, scaling data, and transforming variables. This tool is modular, customizable, and suited for various data cleaning and preprocessing tasks essential for machine learning and data analysis.
Table of Contents
- Introduction
- Problem Statement
- Features
- Installation
- Usage
- Classes and Methods
- Report Generation
- Contributing
- License
Introduction
Data preprocessing is a crucial step in any data analysis or machine learning pipeline. This preprocessing tool provides a systematic approach to cleaning and preparing data by offering modules for inspecting data, handling missing values, managing outliers, scaling numerical features, and transforming variables to improve data quality and model performance.
Problem Statement
Handling raw data can be challenging due to missing values, inconsistent data types, outliers, and other issues that can degrade the performance of predictive models. This tool/library/package aims to streamline the preprocessing workflow, making it easier to clean and prepare data for further analysis.
Features
- Initial Inspection: Provides insights into the dataset, including shape, size, summary statistics, and detailed analysis of missing and duplicated values.
- Data Type Conversion: Converts data types like objects to strings, integers, floats, and datetime, ensuring data consistency.
- Missing Value Handling: Offers multiple strategies to fill or remove missing values, including mean, median, mode, bfill, linear, and polynomial interpolation.
- Outlier Handling: Detects and caps outliers using IQR and Z-score methods.
- Scaling: Standardizes numerical data using Standard Scaler, Robust Scaler, and Normalizer techniques.
- Variable Transformation: Provides transformations like binning, log transformation, square root transformation, label encoding, and one-hot encoding.
Installation
Clone this repository to your local machine and ensure you have Python installed along with the required dependencies:
git clone https://github.com/KaRtHiK-56/EDA_python_package_library
pip install -r requirements.txt
Usage
Initial Data Inspection
The inspection methods provide a detailed overview of your dataset to identify data quality issues upfront.
REFER TO PackageTest.ipynb FOR SAMPLE EXAMPLE
https://github.com/KaRtHiK-56/EDA_python_package_library
!pip install eda-python-library==0.0.1.6
# Import the eda library
from eda.eda import Inspection
Inspection.inspect()
# This will ask you to enter the path of the csv file and then generated the initial inspection.
Handling Missing Values
Handle missing values using different strategies like mean, median, mode, bfill, etc.
# Import and use the MissingValueHandler class
from eda.eda import MissingValueHandler
MissingValueHandler.mean('col1')
MissingValueHandler.b_fill('col3')
Data Type Conversion
Convert data types using the DataTypeConverter class, which supports conversions between object, string, integer, float, and datetime.
# Import and use the DataTypeConverter class
from eda.eda import DataTypeConverter
converter = DataTypeConverter(df)
converter.to_string('col2')
converter.to_datetime('col3')
Outlier Handling
Handle outliers using IQR and Z-score methods.
# Import and use the OutlierHandler class
from eda.eda import OutlierHandler
OutlierHandler.iqr_capping('col1')
Scaling Data
Scale numerical data using Standard Scaler, Robust Scaler, or Normalizer.
# Import and use the ScalingHandler class
from eda.eda import NumericalScaler
NumericalScaler.standardscaler('col1')
Variable Transformation
Transform variables using binning, log transformation, and encoding methods.
# Import and use the VariableTransformation class
from eda.eda import VariableTransformation
VariableTransformation.binner('col1', bins=[0, 1, 2, 3, 4])
VariableTransformation.label_encoding('col2')
Classes and Methods
1. InitialInspection
- Methods:
inspect(): Generates a comprehensive inspection report on dataset shape, size, dimensions, summary, missing values, duplicates, numerical and categorical columns, skewness, and kurtosis.
2. MissingValueHandler
- Methods:
mean(),median(),mode(),b_fill(),f_fill(),linear(),polynomial(),drop(): Various techniques to handle missing values in the dataset.
3. DataTypeConverter
- Methods:
to_string(),to_int(),to_float(),to_datetime(): Convert data types of specific columns.
4. OutlierHandler
- Methods:
iqr_capping(),zscore_capping(): Detect and handle outliers using IQR and Z-score methods.
5. ScalingHandler
- Methods:
standardscaler(),robustscaler(): Scale numerical data using different scaling techniques.
6. VariableTransformation
- Methods:
binning(),log_transformer(),sqrt_transformer(),label_encoding(),one_hot_encoding(): Various transformations for numerical and categorical data.
Report Generation
The Inspection class provides a detailed report summarizing the data, including counts and percentages of missing and duplicated values, column types, and descriptive statistics.
Contributing
Contributions are welcome! Please read the CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests.
License
This project is licensed under the MIT License - see the LICENSE file for details.
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
File details
Details for the file eda_python_library-0.0.1.8.tar.gz.
File metadata
- Download URL: eda_python_library-0.0.1.8.tar.gz
- Upload date:
- Size: 23.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b0151151f73a104fb7d3403d25070c74a405680d3c43a85cbadded18acaf4b4
|
|
| MD5 |
e6880efa1386a5841914228de028720f
|
|
| BLAKE2b-256 |
e84b1e8f64135513a887978a8bb1f8d38ead5c7e316d208bbdcff3c572098bc9
|