来源信息
- 仓库
- brycewang-stanford/Auto-Empirical-Research-Skills
- 最近来源活动
- 2026年4月3日 02:07
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 3,291
- 分支
- 432
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
菜单
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill stata-analyst-guide命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
中英双语学术降 AIGC / bilingual academic de-AIGC skill. Removes AI-generated writing signatures from empirical papers in economics, management, and the social sciences — in both English and Chinese. Covers Turnitin AI, GPTZero, Originality.ai on the English side and 知网 AMLC, 万方, 维普 on the Chinese side. Uses a six-step loop (intake → audit → claim-evidence check → differentiated rewrite → five-dimension self-score → cold-reader recheck) with two pattern libraries (22 English + 17 Chinese patterns), section-by-section strategies for empirical papers, and hard protections that keep every number, coefficient, and citation intact.
Use when a research task needs reproducible Kaggle discovery, metadata inspection, bounded public-data downloads, competition or kernel discovery, model discovery, or an explicitly approved Kaggle write/delete operation through the official CLI.
基于 SOC 职业分类
正在显示 SKILL.md
| name | stata-analyst-guide |
| description | Stata workflows for publication-ready sociology and social science research |
| metadata | {"openclaw":{"emoji":"📋","category":"analysis","subcategory":"econometrics","keywords":["Stata","sociology","social science","survey data","regression","publication tables"],"source":"https://www.stata.com"}} |
Complete Stata workflow for sociology and social science research, from survey data preparation through publication-ready regression tables and visualizations. This skill covers the analytical techniques most commonly used in top sociology journals.
Stata is the dominant statistical software in sociology, political science, demography, and many social science disciplines. Its command-line interface, reproducible do-file workflow, and comprehensive support for survey data, multilevel models, and categorical data analysis make it the tool of choice for researchers working with complex social datasets.
This skill provides ready-to-use Stata code for the most common analytical tasks in social science research: descriptive statistics for diverse variable types, regression modeling with proper controls and robustness checks, interaction effects with meaningful visualizations, and automated production of APA/ASA-formatted tables suitable for direct inclusion in journal manuscripts.
The examples draw on typical social science data structures: individual-level survey data with sampling weights, nested data (individuals within organizations or regions), longitudinal panels, and event-history data. All code follows the conventions expected by reviewers at journals such as the American Sociological Review, American Journal of Sociology, and Social Forces.
* Social science surveys typically require survey weights
svyset psu [pweight=finalweight], strata(stratum)
* Weighted means and proportions
svy: mean income education_years age
svy: proportion race gender marital_status
* Weighted cross-tabulation
svy: tabulate education_cat income_quintile, row se
* Descriptive statistics table for paper
estpost summarize age education_years income ///
children household_size, detail
esttab using "tables/descriptives.tex", ///
cells("mean(fmt(2)) sd(fmt(2)) min max count") ///
label title("Descriptive Statistics") replace
* T-tests with survey weights
svy: mean income, over(gender)
lincom [income]Male - [income]Female
* ANOVA
svy: regress income i.race i.education_cat
testparm i.race
testparm i.education_cat
* Effect sizes (Cohen's d)
esize twosample income, by(gender)
* Model building strategy (nested models for sociology papers)
* Model 1: Bivariate
reg income i.gender [pweight=finalweight], robust
estimates store m1
* Model 2: Add demographics
reg income i.gender age age_sq i.race i.marital [pweight=finalweight], robust
estimates store m2
* Model 3: Add human capital
reg income i.gender age age_sq i.race i.marital ///
education_years experience experience_sq [pweight=finalweight], robust
estimates store m3
* Model 4: Add job characteristics
reg income i.gender age age_sq i.race i.marital ///
education_years experience experience_sq ///
i.occupation i.industry hours_worked [pweight=finalweight], robust
estimates store m4
* Publication-ready table
esttab m1 m2 m3 m4 using "tables/regression_income.tex", ///
b(3) se(3) star(* 0.05 ** 0.01 *** 0.001) ///
label title("OLS Regression of Income") ///
mtitles("Bivariate" "Demographics" "Human Capital" "Full Model") ///
stats(N r2_a, labels("Observations" "Adjusted R-squared") fmt(0 3)) ///
addnotes("Standard errors in parentheses." ///
"All models use survey weights.") ///
replace
* Binary outcome: employment status
logit employed i.gender age age_sq i.race i.education_cat ///
children i.marital [pweight=finalweight], robust
estimates store logit1
* Report odds ratios
logit employed i.gender age age_sq i.race i.education_cat ///
children i.marital [pweight=finalweight], robust or
estimates store logit_or
* Average marginal effects (preferred in sociology)
margins, dydx(*) post
estimates store ame
* Predicted probabilities by group
logit employed i.gender##i.race age education_years [pweight=finalweight], robust
margins gender#race, atmeans
marginsplot, title("Predicted Probability of Employment")
* Gender x education interaction on income
reg income c.education_years##i.gender age i.race [pweight=finalweight], robust
* Visualize interaction
margins gender, at(education_years=(8(2)20))
marginsplot, ///
title("Returns to Education by Gender") ///
ytitle("Predicted Income ($)") ///
xtitle("Years of Education") ///
legend(order(1 "Male" 2 "Female")) ///
scheme(s2mono)
graph export "figures/education_gender_interaction.pdf", replace
* Test whether the effect of X on Y varies by moderator Z
reg outcome c.x_var##c.moderator controls [pweight=finalweight], robust
* Simple slopes at meaningful values of moderator
margins, dydx(x_var) at(moderator=(10 25 50 75 90)) // Percentiles
marginsplot, recast(line) recastci(rarea) ///
title("Effect of X on Y at Different Levels of Moderator")
* Students nested within schools
mixed test_score gender ses || school_id:, ///
variance mle
* Random slopes
mixed test_score gender c.ses || school_id: ses, ///
covariance(unstructured) mle
* Calculate ICC
estat icc
* Store and compare models
estimates store mlm1
mixed test_score gender c.ses school_quality || school_id: ses, ///
covariance(unstructured) mle
estimates store mlm2
lrtest mlm1 mlm2
* Set publication-ready scheme
set scheme s2mono
* Coefficient plot
coefplot m2 m3 m4, ///
drop(_cons) xline(0) ///
title("Regression Coefficients Across Models") ///
legend(order(2 "Demographics" 4 "Human Capital" 6 "Full")) ///
graphregion(color(white))
graph export "figures/coefplot.pdf", replace
* Distribution comparison
twoway (kdensity income if gender==1, lcolor(navy)) ///
(kdensity income if gender==2, lcolor(cranberry)), ///
title("Income Distribution by Gender") ///
legend(order(1 "Male" 2 "Female")) ///
xtitle("Annual Income ($)") ytitle("Density") ///
graphregion(color(white))
graph export "figures/income_density.pdf", replace
* Master do-file structure for replication
* master.do
* ==========================================
* Project: [Title]
* Author: [Name]
* Date: [Date]
* Description: Master script for replication
* ==========================================
version 17
clear all
set more off
set maxvar 10000
global root "~/research/project_name"
global raw "$root/data/raw"
global processed "$root/data/processed"
global tables "$root/tables"
global figures "$root/figures"
global logs "$root/logs"
log using "$logs/master_log.smcl", replace
do "$root/code/01_data_cleaning.do"
do "$root/code/02_descriptives.do"
do "$root/code/03_main_analysis.do"
do "$root/code/04_robustness.do"
do "$root/code/05_tables_figures.do"
log close