Skip to main content

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

Testing

pytest

License

This project is licensed under the MIT License.

Author

Khaja Mubashir Arsalan

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

myeda-0.1.6.tar.gz (6.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

myeda-0.1.6-py3-none-any.whl (8.1 kB view details)

Uploaded Python 3

File details

Details for the file myeda-0.1.6.tar.gz.

File metadata

  • Download URL: myeda-0.1.6.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.1

File hashes

Hashes for myeda-0.1.6.tar.gz
Algorithm Hash digest
SHA256 b0fa40e758314003612d4b1d814812fbc108a2faad09b4856f0a10fa8fa3ae18
MD5 e7508122686088c9d0e8b4c372ba7f55
BLAKE2b-256 fbfb4f75f8f06c73f1d299fc16ba39922b706151370f04e322b97b6935288362

See more details on using hashes here.

File details

Details for the file myeda-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: myeda-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 8.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.1

File hashes

Hashes for myeda-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 67f9ecdd9b937afbbf465f02b7748ea96afae31ff6874dafd2134beda82a47a9
MD5 5655c4a7362c8674993b9c0430a158e8
BLAKE2b-256 395328edadaf746e68670fc971de2ba8ede09c1109643cf36a98f5097605af6c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page