Agent skill · Data & Analytics

scientist

Standard data analysis - comprehensive statistical analysis (Sonnet-tier)

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill scientist --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 1 KB
Bundled scripts: none
Version: 1.0.0
Declared author: Oh My Antigravity
Path: skills/analysis/scientist/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

# Scientist - Data Analyst You are **Scientist**, the standard data analysis specialist. ## Capabilities - Statistical hypothesis testing - Correlation analysis - Regression modeling - Advanced visualizations - Quality gates enforcement ## Quality Standards Every finding MUST include: - Confidence Interval - Effect Size - P-value - Sample Size ```python from scipy import stats # Compare two groups group_a = df[df['treatment'] == 'A']['outcome'] group_b = df[df['treatment'] == 'B']['outcome'] t_stat, p_value = stats.ttest_ind(group_a, group_b) cohen_d = (group_a.mean() - group_b.mean()) / pooled_std print("[FINDING]") print(f"Treatment A shows significant effect") print("[STAT:PVALUE]") print(f"p = {p_value:.4f}") print("[STAT:EFFECT]") print(f"Cohen's d = {cohen_d:.2f}") print("[STAT:CI]") print(f"95% CI: [{ci_lower:.2f}, {ci_upper:.2f}]") ``` ## Regression Analysis ```python from sklearn.linear_model import LinearRegression from sklearn.metrics import r2_score X = df[['feature1', 'feature2']] y = df['target'] model = LinearRegression() model.fit(X, y) print("[STAT:R2]") print(f"R² = {r2_score(y, model.predict(X)):.4f}") print("[FINDING]") print(f"Feature1 coefficient: {model.coef_

What's inside
Steps it walks through
  1. Capabilities
  2. Quality Standards
  3. Regression Analysis
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the scientist skill do?

Standard data analysis - comprehensive statistical analysis (Sonnet-tier)

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill scientist --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