One-line Exploratory Data Analysis (EDA) library
Project description
myeda
A lightweight Exploratory Data Analysis (EDA) library that provides one-line statistical summaries and optional visualizations for faster data understanding.
Features
One-line EDA summaries
Missing value analysis
Descriptive statistics
Optional visualizations (explicit, not automatic)
Clean, modular API
Beginner-friendly and extensible
Installation
pip install myeda
Basic Usage
import pandas as pd from myeda import overview, report
df = pd.read_csv("titanic_dataset.csv")
overview(df) report(df)
Visualizations (Explicit & Optional)
from myeda.viz import ( plot_numeric_distribution, plot_boxplot, plot_categorical_counts, plot_correlation_heatmap )
plot_numeric_distribution(df, "Age") plot_boxplot(df, "Fare") plot_categorical_counts(df, "Sex") plot_correlation_heatmap(df)
Visualizations are never automatic — you control when to plot.
Project Structure
EDA/
|-- examples/
| |-- titanic_dataset.csv
| `-- titanic_demo.ipynb
|
|-- myeda/
| |-- __init__.py
| |-- report.py
| |
| |-- core/
| | |-- overview.py
| | |-- missing.py
| | `-- statistics.py
| |
| `-- viz/
| `-- visualization.py
|
|-- tests/
| `-- test_statistics.py
|
|-- setup.py
|-- pyproject.toml
|-- requirements.txt
|-- README.md
|-- LICENSE
`-- .gitignore
Module Responsibilities
core/overview.py
Dataset shape
Column types
Basic dataset information
core/missing.py
Missing value counts
Missing percentage per column
core/statistics.py
Mean, median, mode
Variance, standard deviation
Numerical summaries
viz/visualization.py
Numeric distributions
Boxplots
Categorical counts
Correlation heatmaps
Examples
Check the examples/ directory for:
Titanic dataset
Jupyter notebook demonstrating full EDA workflow
How users can import EVERYTHING (README-ready)
Dataset overview
from myeda import dataset_overview
dataset_overview(df)
Missing-value analysis
from myeda import missing_overview, missing_summary
missing_overview(df)
missing_summary(df)
Statistical summaries
from myeda import numeric_summary, categorical_summary
numeric_summary(df)
categorical_summary(df)
Visualizations (explicit & optional)
from myeda import (
plot_numeric_distribution,
plot_boxplot,
plot_categorical_counts,
plot_correlation_heatmap,
)
plot_numeric_distribution(df, "Age")
plot_boxplot(df, "Fare")
plot_categorical_counts(df, "Sex")
plot_correlation_heatmap(df)
Full EDA (recommended)
from myeda import EDAReport
eda = EDAReport(df)
results = eda.run()
Testing
pytest
License
MIT License
Copyright (c) 2026 Khaja Mubashir Arsalan
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Author
Khaja Mubashir Arsalan
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 myeda-0.1.9.tar.gz.
File metadata
- Download URL: myeda-0.1.9.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe97fbd349f099ad090a220794105d3a53e1d2c71aecf34550493e19c1d7dde1
|
|
| MD5 |
0cc76e0aef59f4689892dcacf9e6f853
|
|
| BLAKE2b-256 |
7191d740709e0b6041370e6c0c7ab0d7f8899edb58461b4e1d4de05d67273a50
|
File details
Details for the file myeda-0.1.9-py3-none-any.whl.
File metadata
- Download URL: myeda-0.1.9-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbf16f9108c78e81ef624380d9f86a2eb1dbaff552666a21d84a5bc536c734e3
|
|
| MD5 |
cba3a34c2471720ab18e8da669c9f4ae
|
|
| BLAKE2b-256 |
94c4be6ad9bd1e3a5fc80519bf59c4b4d72e7f0391e22390f29703c38f711b22
|