Metadata-Version: 2.4
Name: autoeda-prayag
Version: 0.0.6
Summary: One-line automated exploratory data analysis
Author: Prayag Raj
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: matplotlib
Requires-Dist: seaborn
Dynamic: license-file

# AutoEDA

One-line automated exploratory data analysis for any dataset.

---

## 🚀 Features

- Dataset overview (info, statistics)
- Missing value detection
- Duplicate detection
- Correlation analysis
- Skewness detection
- Clean visualizations
- Target column analysis

---

## 📦 Installation

```bash
pip install autoeda-prayag
```

## Usage

```bash
from autoeda.analyzer import analyze
import pandas as pd

df = pd.read_csv("data.csv")
analyze(df, target="survived")
```


### CLI Usage

```bash
autoeda data.csv --target survived
```

## Built With
```bash

	•	Python
	•	Pandas
	•	Matplotlib
	•	Seaborn

```
