Agent skill · Data & Analytics

data-science-expert

Expert-level data science, analytics, visualization, and statistical modeling

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill data-science-expert --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 12 KB
Bundled scripts: none
Version: 1.0.0
Allowed tools: -Read-Write-Edit-Bash(python:*)
Path: skills/ai-ml/data-science-expert/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Data Science Expert Expert guidance for data science, analytics, statistical modeling, and data visualization. ## Core Concepts ### Data Analysis - Exploratory Data Analysis (EDA) - Data cleaning and preprocessing - Feature engineering - Statistical inference - Time series analysis - A/B testing ### Machine Learning - Supervised learning (classification, regression) - Unsupervised learning (clustering, PCA) - Model selection and validation - Feature importance - Hyperparameter tuning - Ensemble methods ### Data Visualization - Matplotlib, Seaborn, Plotly - Statistical plots - Interactive dashboards - Storytelling with data - Best practices for visualization - Color theory and accessibility ## Data Cleaning and EDA ```python import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns from typing import Dict, List class DataCleaner: """Clean and preprocess data""" def __init__(self, df: pd.DataFrame): self.df = df.copy() self.cleaning_log = [] def handle_missing_values(self, strategy: str = 'drop', fill_value=None) -> pd.DataFrame: """Handle missing values""" missing_before = self.df.isnull().sum().sum() if strategy == 'drop': self.df = self.df.drop

What's inside
Steps it walks through
  1. Core Concepts
  2. Data Analysis
  3. Machine Learning
  4. Data Visualization
  5. Data Cleaning and EDA
  6. Feature Engineering
  7. Time Series Analysis
  8. A/B Testing
  9. Best Practices
  10. Visualization
  11. Anti-Patterns
  12. Resources
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the data-science-expert skill do?

Expert-level data science, analytics, visualization, and statistical modeling

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill data-science-expert --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going