Generate structured EDA notebooks from datasets.
Project description
Hypersonic — EDA Notebook Generator
Build a complete Exploratory Data Analysis notebook in minutes.
Data scientists and ML folks are often evaluated on their EDA chops—but wiring up the same scaffolding each time is repetitive. Hypersonic lets you quick-build a clean, structured Jupyter notebook so you can spend your time on insights, not boilerplate.
- ⚡ Fast: point it at CSV/Parquet/SQLite and get an EDA notebook.
- 🧭 Structured: title/overview, reproducible loading, helper plots, and per-feature sections.
- 🧹 Practical: includes basic string normalization and “check/correct category typos” prompts.
- 🧰 Flexible: use it as a CLI or import as a Python library.
Name inspiration: hypersonic jets—because your EDA should take off quickly.
Installation
Python 3.9+ recommended.
From source (this repo)
# from the repo root
pip install -e .
This installs a console command hypersonic and the hypersonic Python package.
Quick Start (CLI)
Basic (CSV)
hypersonic --input data/my_data.csv --output eda.ipynb
With a target column
hypersonic --input data/my_data.csv --target "label" --output eda_label.ipynb
Parquet
hypersonic --input data/my_data.parquet --output eda_parquet.ipynb
SQLite (.db), first table auto-detected
hypersonic --input data/my_database.db --output eda_db.ipynb
SQLite with a specific table
hypersonic --input data/my_database.db --table events --output eda_events.ipynb
Remote files (HTTP/HTTPS)
hypersonic --input "https://example.com/data.csv" --output eda_remote.ipynb
Command-line Options
hypersonic --help
--input(required): CSV/Parquet/SQLite .db (path or URL)--table(optional): Table name if input is SQLite--target(optional): Target column name (excluded from feature loops)--max-cat(default: 30): Max number of categorical features to include--max-num(default: 30): Max number of numeric features to include--output(default: hypersonic_eda.ipynb): Output notebook path
What the Generated Notebook Contains
-
Title & Overview
Source info (path/URL, table, target) and timestamp. -
Data Loading (reproducible)
Handles CSV/Parquet/SQLite; downloads remote files to a temp path for SQLite. -
Dataset Snapshot
A compactdescribe(include="all")view (transposed) of the dataframe. -
Category Text Hygiene
A cell that normalizes string columns (lowercase, trims whitespace, removes stray spaces/underscores/periods).
A Markdown reminder to “carefully check and correct category typos.”
Per-categorical-feature cells that print unique values and counts to help you spot issues. -
Helper Functions
Simple plotting utilities (plot_categorical,plot_numeric) and tabulation helpers. -
Per-Feature Sections
For each categorical feature: a plot cell and a value-counts table.
For each numeric feature: a histogram and a summary-stats table (with IQR fences). -
Notes
Pointers and next-steps you can extend.
Tip: For very long-tail categoricals, consider grouping infrequent classes into “Other” right in the notebook.
Python API
Use Hypersonic programmatically if you prefer.
import pandas as pd
from hypersonic import notebook_builder as hnb
# Infer feature types from a small preview (mimics CLI behavior)
df = pd.read_csv("data/my_data.csv")
cats, nums = hnb.infer_feature_types(df, max_unique_for_categorical=40)
# Build the notebook
hnb.build_notebook(
input_source="data/my_data.csv", # path or URL
output_path="eda.ipynb",
target=None, # or "label"
table=None, # set for SQLite
features_categorical=cats,
features_numeric=nums,
)
Or just call the CLI entrypoint from Python:
from hypersonic.notebook_builder import main
# Emulates: hypersonic --input data.csv --output eda.ipynb
main()
Examples
Create a notebook focused on a target, with more features:
hypersonic --input data/train.csv --target Outcome --max-cat 50 --max-num 50 --output eda_outcome.ipynb
Generate EDA for the first table in a remote SQLite DB:
hypersonic --input "https://host/path/data.db" --output eda_db.ipynb
Why this design?
- One file in, one notebook out. Clear contract, low ceremony.
- Reproducibility first. The “Data Loading” cell records exactly how the data was pulled.
- No heavy dependencies. Pure
pandas/matplotlib/nbformat(+requestsfor remote files).
Limitations & Notes
- Extremely wide datasets (thousands of columns) will generate large notebooks—use
--max-cat/--max-numto cap feature counts. - The default string cleaning is intentionally simple; adapt it in the notebook if your domain needs different rules.
- Plots are basic on purpose—tune them to your style post-generation.
Roadmap
- Subcommands for different flows (e.g.,
hypersonic eda target ...) - Optional profiling (timings, memory)
- “Other” binning for long-tail categories
- Skew detection and auto-transform hints
Contributing
Issues and PRs welcome!
Please open an issue with a small sample dataset and the expected behavior.
License
MIT © Krish Ambady
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
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 hypersonic_eda-0.1.0.tar.gz.
File metadata
- Download URL: hypersonic_eda-0.1.0.tar.gz
- Upload date:
- Size: 14.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
101f28e24822a2e28c713420bc68648251fd87340ee7ea01309f9e1c889d4e6c
|
|
| MD5 |
01472a0122f924d9d02e1a7346225e83
|
|
| BLAKE2b-256 |
bd6c038cb7a285dc7f3d407cc4147c553758bb1ec05a24534d48fcdd9c59001d
|
File details
Details for the file hypersonic_eda-0.1.0-py3-none-any.whl.
File metadata
- Download URL: hypersonic_eda-0.1.0-py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8eac871585841ac1f56a73657d601de1cbe1e2dd4ca683a113af17961233345
|
|
| MD5 |
0ee8f216dc55a0c3cf5865132d2d3d45
|
|
| BLAKE2b-256 |
433cb036c1d439407e928eaafa8f1f676b9b62357c6f20b2f12c4f3c05fdbc51
|