Lightweight EDA tool for automated data analysis with insights and visualizations
Project description
shahEDA ๐
Lightweight Automated Exploratory Data Analysis Tool
๐ Overview
shahEDA is a lightweight Python package that automates the process of Exploratory Data Analysis (EDA). It helps you quickly understand your dataset by generating structured insights, statistics, and suggestions โ all in one run.
โก Features
- ๐ Load datasets (CSV supported)
- ๐ Basic dataset overview (shape, columns, data types)
- โ Missing values detection
- ๐ Duplicate detection
- ๐ Statistical summaries (mean, std, quartiles, etc.)
- ๐ง Smart suggestions for preprocessing & ML readiness
- ๐๏ธ Optional verbose and display modes
๐ ๏ธ Installation
Clone the repository: git clone https://github.com/codingsheep17/shahEDA.git cd shahEDA Install dependencies: pip install -r requirements.txt
๐ Usage
๐น Simple Usage (Recommended)
from shahEDA import analyze results = analyze("your_dataset.csv", verbose=True, display=True)
๐น Advanced Usage
from shahEDA import AnalyzerEDA eda = AnalyzerEDA("your_dataset.csv", verbose=True, display=True) results = eda.run()
๐ Example Output
Loaded file in csv format === BASIC INFO === Shape: (100, 14) Columns: [...]
=== MISSING VALUES === No missing values found
=== DUPLICATES === 0 duplicates
=== STATISTICS === (mean, std, quartiles...)
=== SUGGESTIONS ===
- Encode categorical columns for ML
- Check feature distributions
๐ง Suggestions System
The tool automatically identifies:
- Categorical columns โ suggests encoding
- Data readiness for ML
- Potential preprocessing steps
๐ Project Structure
shahEDA/ โ โโโ init.py # Public API โโโ pipeline.py # Main Analyzer class โโโ _loader.py # Data loading โโโ _eda_engine.py # Core EDA logic โโโ _stats.py # Statistics
๐ฏ Goal
To simplify and automate EDA so developers and data enthusiasts can:
- Save time
- Focus on insights
- Prepare data faster for ML models
๐ง Future Improvements
- ๐ Advanced visualizations
- ๐ Outlier detection
- ๐ Correlation analysis
- ๐ฆ PyPI package release
๐จโ๐ป Author
Syed Haseeb Shah
- GitHub: https://github.com/codingsheep17
โญ Support
If you find this useful, consider giving it a โญ on GitHub!
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file shaheda-0.1.1.tar.gz.
File metadata
- Download URL: shaheda-0.1.1.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc837e6259a2a432b31893e336dd5fe3d4c08e822d1313946d4c9265262205dc
|
|
| MD5 |
fac00507ac73645c68043ddab8684fc3
|
|
| BLAKE2b-256 |
4975419be4b4ee41f49c8c417b6c12606ff82b2ea988e9d372322b7a57526297
|
File details
Details for the file shaheda-0.1.1-py3-none-any.whl.
File metadata
- Download URL: shaheda-0.1.1-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0dc4ec88e58b2b0cdcc048266ce05c25b878f909c880fe3ffaee24630e579530
|
|
| MD5 |
0ba211da4c8bd11d217785241255f90c
|
|
| BLAKE2b-256 |
82620ed194c2be6e03e9d56b76f1e113a3b8cdb8f6d832063f8add281dd7f09b
|