skills/15-Felpix-Studios-social-science-research/skills/data-analysis/SKILL.md
End-to-end data analysis workflow in R or Python — from exploration through regression to publication-ready tables and figures. Make sure to use this skill whenever the user wants to run any empirical analysis, write analysis code, or produce output from data. Triggers include: "analyze this data", "run a regression", "write R code for this", "write Python code for this", "I have a dataset", "help me with this regression", "run a DiD", "run an RDD", "event study", "IV regression", "fit a model", "produce a table", "make a figure", "explore my data", or any request involving a dataset path or empirical estimation.
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research data-analysisInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Run an end-to-end data analysis in R or Python: load, explore, analyze, and produce publication-ready output.
Input: $ARGUMENTS — a dataset path (e.g., data/county_panel.csv) or a description of the analysis goal (e.g., "regress wages on education with state fixed effects using CPS data").
Determine language from $ARGUMENTS or ask the user:
tidyverse, fixest, lm, .R context → R trackpandas, statsmodels, sklearn, .py or .ipynb context → Python track.csv/.parquet with no language cue → use AskUserQuestion with a single-select menu:
rules/r-code-conventions.md for all standardsscripts/R/ with descriptive namesoutput/saveRDS() for every computed objectr-reviewer on the generated script before presenting resultslibrary(), never require())set.seed(42)dir.create("output/analysis", recursive = TRUE, showWarnings = FALSE)summary(), missingness rates, variable typesoutput/diagnostics/fixest; cross-section: use lm/glmTables: modelsummary (preferred) or stargazer — export .tex and .html
Figures: ggplot2 with project theme; explicit ggsave(width = X, height = Y); save as .pdf and .png; add bg = "transparent" only if output is for Beamer slides
saveRDS() for all key objectsr-reviewer agent: "Review the script at scripts/R/[script_name].R"# ============================================================
# [Descriptive Title]
# Author: [from project context]
# Purpose: [What this script does]
# Inputs: [Data files]
# Outputs: [Figures, tables, RDS files]
# ============================================================
# 0. Setup ----
library(tidyverse)
library(fixest)
library(modelsummary)
set.seed(42)
dir.create("output/analysis", recursive = TRUE, showWarnings = FALSE)
# 1. Data Loading ----
# 2. Exploratory Analysis ----
# 3. Main Analysis ----
# 4. Tables and Figures ----
# 5. Export ----
scripts/python/ with descriptive namesoutput/joblib.dump() for model objects; .to_parquet() for DataFramespathlib.Path for all file paths — never hardcode absolute pathsnp.random.seed(42) and random.seed(42)Path("output/analysis").mkdir(parents=True, exist_ok=True)pandasdf.describe(), df.isnull().sum(), df.dtypesmatplotlib/seabornoutput/diagnostics/df.describe().to_csv("output/diagnostics/summary_stats.csv")smf.ols("y ~ x", data=df).fit(cov_type="HC3")PanelOLS from linearmodels with cluster-robust SEsTables: Format with pandas and export via .to_latex() or stargazer (Python port)
Figures: matplotlib/seaborn; explicit fig.savefig(path, dpi=300, bbox_inches="tight"); save as .pdf and .png
joblib.dump(model, "output/model.pkl") for fitted modelsdf_results.to_parquet("output/results.parquet") for DataFrames# ============================================================
# [Descriptive Title]
# Author: [from project context]
# Purpose: [What this script does]
# Inputs: [Data files]
# Outputs: [Figures, tables, pickle/parquet files]
# ============================================================
import random
import numpy as np
import pandas as pd
import statsmodels.formula.api as smf
import matplotlib.pyplot as plt
import seaborn as sns
import joblib
from pathlib import Path
# Seeds
np.random.seed(42)
random.seed(42)
# Output directories
Path("output/analysis").mkdir(parents=True, exist_ok=True)
Path("output/figures").mkdir(parents=True, exist_ok=True)
# 1. Data Loading
# 2. Exploratory Analysis
# 3. Main Analysis
# 4. Tables and Figures
# 5. Export
[ ] All imports at top
[ ] Random seeds set (numpy + stdlib)
[ ] All paths use pathlib.Path — no hardcoded strings
[ ] Output directories created with mkdir(exist_ok=True)
[ ] Figures saved with explicit dpi=300, bbox_inches="tight"
[ ] Model objects saved with joblib.dump()
[ ] DataFrames saved as parquet
[ ] Comments explain WHY, not WHAT
tools
Autonomous multi-round research review loop using MiniMax API. Use when you want to use MiniMax instead of Codex MCP for external review. Trigger with "auto review loop minimax" or "minimax review".
tools
Autonomous research review loop using any OpenAI-compatible LLM API. Configure via llm-chat MCP server or environment variables. Trigger with "auto review loop llm" or "llm review".
tools
Autonomous multi-round research review loop using MiniMax API. Use when you want to use MiniMax instead of Codex MCP for external review. Trigger with "auto review loop minimax" or "minimax review".
tools
Autonomous research review loop using any OpenAI-compatible LLM API. Configure via llm-chat MCP server or environment variables. Trigger with "auto review loop llm" or "llm review".