Metadata-Version: 2.1
Name: eda_module
Version: 0.1.0
Summary: A reusable EDA module for exploratory data analysis
Home-page: https://github.com/jhansi-siriprolu/eda_module
Author: Jhansi Siriprolu
Author-email: siriprolu2018@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas>=1.0
Requires-Dist: numpy>=1.19
Requires-Dist: matplotlib>=3.0
Requires-Dist: seaborn>=0.11
Requires-Dist: scipy>=1.5

# EDA Module

A reusable module for performing exploratory data analysis (EDA) in Python.

## Features
- Load and describe datasets.
- Check for missing values and duplicates.
- Perform univariate and bivariate analysis.
- Visualize correlations and outliers.

## Installation
```bash
pip install eda_module

## Usage

import eda_module as eda

df = eda.load_data("path/to/dataset.csv")
eda.data_overview(df)
eda.check_missing_values(df)
