Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
aj-geddes avatar

Exploratory Data Analysis

  • 460 installs
  • 305 repo stars
  • Updated March 4, 2026
  • aj-geddes/useful-ai-prompts

exploratory data analysis is a prompt skill that explores unfamiliar datasets through distributions, missingness, correlations, and outlier segments for developers deciding whether a feature, model, or metric is worth bu

About

exploratory data analysis is a skill from aj-geddes/useful-ai-prompts that structures quick exploration of unfamiliar datasets before feature or model work begins. It focuses on distributions, missing values, correlations, and segmented outliers so developers can judge data quality and signal strength early. Reach for exploratory data analysis when a CSV, warehouse table, or experiment log arrives without documented schema or when stakeholders ask whether a metric or ML feature is feasible. The skill guides analysis steps and interpretation rather than deploying production pipelines. It complements formal modeling skills by producing a grounded go/no-go view of the underlying data shape and anomalies.

  • Schema and missing-value profiling
  • Distribution and outlier visualization
  • Correlation and segment comparisons
  • Hypothesis-driven question lists
  • Notebook-ready analysis outlines

Exploratory Data Analysis by the numbers

  • 460 all-time installs (skills.sh)
  • Ranked #469 of 2,064 Data Science & ML skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill exploratory-data-analysis

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs460
repo stars305
Last updatedMarch 4, 2026
Repositoryaj-geddes/useful-ai-prompts

How do you explore a new dataset quickly?

Explore unfamiliar datasets quickly—distributions, missingness, correlations, and segment outliers—to decide whether a feature, model, or metric is worth building.

Who is it for?

Developers or data engineers receiving an unfamiliar dataset who must decide if a feature, model, or metric is worth building.

Skip if: Production ETL jobs, deployed model serving, or compliance audits that need formal pipelines instead of exploratory scoping.

When should I use this skill?

The user asks to explore, profile, or summarize an unfamiliar dataset before feature or model decisions.

What you get

EDA findings on distributions, missingness, correlations, and outlier segments with build recommendations.

  • EDA summary
  • Feature or model scope recommendation

Files

SKILL.mdMarkdownGitHub ↗

Exploratory Data Analysis (EDA)

Overview

Exploratory Data Analysis (EDA) is the critical first step in data science projects, systematically examining datasets to understand their characteristics, identify patterns, and assess data quality before formal modeling.

Core Concepts

  • Data Profiling: Understanding basic statistics and data types
  • Distribution Analysis: Examining how variables are distributed
  • Relationship Discovery: Identifying patterns between variables
  • Anomaly Detection: Finding outliers and unusual patterns
  • Data Quality Assessment: Evaluating completeness and consistency

When to Use

  • Starting a new dataset analysis
  • Understanding data before modeling
  • Identifying data quality issues
  • Generating hypotheses for testing
  • Communicating insights to stakeholders

Implementation with Python

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns

# Load and explore data
df = pd.read_csv('customer_data.csv')

# Basic profiling
print(f"Shape: {df.shape}")
print(f"Data types:\n{df.dtypes}")
print(f"Missing values:\n{df.isnull().sum()}")
print(f"Duplicates: {df.duplicated().sum()}")

# Statistical summary
print(df.describe())
print(df.describe(include='object'))

# Distribution analysis - numerical columns
fig, axes = plt.subplots(2, 2, figsize=(12, 8))
df['age'].hist(bins=30, ax=axes[0, 0])
axes[0, 0].set_title('Age Distribution')

df['income'].hist(bins=30, ax=axes[0, 1])
axes[0, 1].set_title('Income Distribution')

# Box plots for outlier detection
df.boxplot(column='age', by='region', ax=axes[1, 0])
axes[1, 0].set_title('Age by Region')

# Categorical analysis
df['category'].value_counts().plot(kind='bar', ax=axes[1, 1])
axes[1, 1].set_title('Category Distribution')
plt.tight_layout()
plt.show()

# Correlation analysis
numeric_df = df.select_dtypes(include=[np.number])
correlation_matrix = numeric_df.corr()

plt.figure(figsize=(10, 8))
sns.heatmap(correlation_matrix, annot=True, cmap='coolwarm', center=0)
plt.title('Correlation Matrix')
plt.show()

# Multivariate relationships
sns.pairplot(df[['age', 'income', 'education_years']], diag_kind='hist')
plt.show()

# Skewness and kurtosis
print("\nSkewness:")
print(numeric_df.skew())
print("\nKurtosis:")
print(numeric_df.kurtosis())

# Percentile analysis
print("\nPercentiles for Age:")
print(df['age'].quantile([0.25, 0.5, 0.75, 0.95, 0.99]))

# Missing data patterns
missing_pct = (df.isnull().sum() / len(df) * 100)
missing_pct[missing_pct > 0].sort_values(ascending=False)

# Value count analysis
print("\nCustomer Types Distribution:")
print(df['customer_type'].value_counts(normalize=True))

# Advanced EDA: Groupby analysis
print("\nGroupBy Analysis:")
print(df.groupby('region')[['age', 'income']].agg(['mean', 'median', 'std']))

# Correlation with target variable
if 'target' in df.columns:
    target_corr = df.corr()['target'].sort_values(ascending=False)
    print("\nFeature Correlation with Target:")
    print(target_corr)

# Data type breakdown
print("\nData Type Summary:")
print(df.dtypes.value_counts())

# Unique value count
print("\nUnique Value Counts:")
print(df.nunique().sort_values(ascending=False))

# Variance analysis
print("\nVariance per Feature:")
numeric_cols = df.select_dtypes(include=[np.number]).columns
for col in numeric_cols:
    variance = df[col].var()
    print(f"  {col}: {variance:.2f}")

# Distribution patterns
for col in df.select_dtypes(include=[np.number]).columns:
    skew = df[col].skew()
    kurt = df[col].kurtosis()
    print(f"{col} - Skew: {skew:.2f}, Kurtosis: {kurt:.2f}")

# Bivariate analysis
fig, axes = plt.subplots(1, 2, figsize=(12, 4))
df.groupby('region')['income'].mean().plot(kind='bar', ax=axes[0])
axes[0].set_title('Average Income by Region')
df.groupby('category')['age'].mean().plot(kind='bar', ax=axes[1])
axes[1].set_title('Average Age by Category')
plt.tight_layout()
plt.show()

# Summary statistics profile
print("\nComprehensive Data Profile:")
profile = {
    'Variable': df.columns,
    'Type': df.dtypes,
    'Non-Null Count': df.count(),
    'Null Count': df.isnull().sum(),
    'Unique Values': df.nunique(),
}
profile_df = pd.DataFrame(profile)
print(profile_df)

Advanced EDA Techniques

# Step 15: Interaction analysis
import itertools

numeric_cols = df.select_dtypes(include=[np.number]).columns
interaction_strengths = []

for col1, col2 in itertools.combinations(numeric_cols[:5], 2):
    interaction_score = abs(df[col1].corr(df[col2]))
    interaction_strengths.append({
        'Pair': f"{col1} × {col2}",
        'Correlation': interaction_score,
    })

interaction_df = pd.DataFrame(interaction_strengths).sort_values('Correlation', ascending=False)
print("\nTop Interactions:")
print(interaction_df.head())

# Step 16: Outlier summary
for col in numeric_cols:
    Q1, Q3 = df[col].quantile([0.25, 0.75])
    IQR = Q3 - Q1
    outliers = df[(df[col] < Q1 - 1.5*IQR) | (df[col] > Q3 + 1.5*IQR)]
    if len(outliers) > 0:
        print(f"\n{col}: {len(outliers)} outliers detected ({len(outliers)/len(df)*100:.1f}%)")

# Step 17: Generate automated insights
print("\n" + "="*60)
print("AUTOMATED DATA INSIGHTS")
print("="*60)

for col in numeric_cols:
    skewness = df[col].skew()
    mean_val = df[col].mean()
    median_val = df[col].median()

    if abs(skewness) > 1:
        direction = "right" if skewness > 0 else "left"
        print(f"{col}: Highly {direction}-skewed distribution")

    if abs(mean_val - median_val) > 0.1 * median_val:
        print(f"{col}: Mean and median differ significantly")

print("="*60)

Key Questions to Ask

1. What are the data dimensions and types? 2. How are key variables distributed? 3. What patterns exist between variables? 4. Are there obvious data quality issues? 5. What outliers or anomalies exist? 6. What hypotheses can we generate?

Best Practices

  • Start with data profiling before visualization
  • Check data types and missing values early
  • Visualize distributions before jumping to analysis
  • Document interesting findings and anomalies
  • Create summaries for stakeholder communication
  • Use domain knowledge to interpret patterns

Common Pitfalls

  • Skipping data quality checks
  • Over-interpreting patterns in small datasets
  • Ignoring domain context
  • Insufficient data visualization
  • Not documenting findings systematically

Deliverables

  • Data quality report with missing values and duplicates
  • Summary statistics and distribution charts
  • Correlation and relationship visualizations
  • List of notable patterns and anomalies
  • Hypotheses for further investigation
  • Data cleaning recommendations

Related skills

FAQ

What does exploratory data analysis examine?

exploratory data analysis examines distributions, missingness, correlations, and segmented outliers in unfamiliar datasets so developers can judge whether a feature, model, or metric is worth building.

When should exploratory data analysis run?

exploratory data analysis should run during validate-phase scoping when a dataset is new or undocumented and teams need evidence before committing to feature or model engineering.

Data Science & MLanalyticspipelinesetl

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.