Back to Library

EDA (Exploratory Data Analysis) Notebook

NotebooksClaudeEDAPythondata analysisvisualization

Prompt

Write a complete exploratory data analysis (EDA) Jupyter notebook for my dataset.

Dataset: [DATASET NAME OR DESCRIPTION]
Columns and types: [LIST COLUMN NAMES AND DATA TYPES]
Analysis goal: [WHAT YOU'RE TRYING TO UNDERSTAND]

The notebook must include:
1. **Data Loading & Overview** — shape, dtypes, sample rows, missing value heatmap
2. **Univariate Analysis** — histograms for numeric columns, bar charts for categoricals, top-N value counts
3. **Bivariate Analysis** — correlation heatmap, scatter plots for key pairs, box plots by category
4. **Outlier Detection** — IQR method for numerics, flag rows for review
5. **Time Series View** (if date column exists) — trend over time
6. **Key Findings Cell** — markdown summary of the top 5 things you discovered
7. **Next Steps Cell** — suggested deeper analyses or modeling approaches

Use matplotlib and seaborn. Include figure titles and axis labels on every plot.

More from Notebooks

Notebooks

Jupyter Notebook Explainer

I have a Jupyter notebook I need explained. Break it down cell by cell and give me a plain-English summary. Context: [WHAT THIS NOTEBOOK IS FOR / WHO WROTE IT]...
Claude
Notebooks

Data Cleaning Notebook Builder

Write a complete, ready-to-run Jupyter notebook for cleaning and validating my dataset. Dataset description: [DESCRIBE YOUR DATA, e.g. 'CSV of sales transactio...
Claude
Notebooks

Pandas DataFrame Debugger

I'm getting an error in my Python/Pandas code. Help me debug it. What I was trying to do: [DESCRIBE YOUR GOAL IN ONE SENTENCE] Python version: [PYTHON VERSION]...
Claude
Back to Library