skills/43-wentorai-research-plugins/skills/domains/education/educational-research-methods/SKILL.md
Quantitative and qualitative research methods for education studies
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research educational-research-methodsInstall 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.
A comprehensive skill for conducting rigorous educational research using both quantitative and qualitative methodologies. Covers study design, data collection instruments, analysis techniques, and reporting standards specific to education scholarship.
Educational quantitative research typically follows one of these designs:
| Design | Purpose | Example | |--------|---------|---------| | Randomized controlled trial (RCT) | Causal inference | Random assignment to instruction methods | | Quasi-experimental | Causal inference without randomization | Pre-post comparison with matched control | | Correlational | Relationship exploration | Survey linking self-efficacy to GPA | | Longitudinal panel | Change over time | Tracking cohort achievement K-12 | | Cross-sectional survey | Snapshot description | National teacher satisfaction survey |
Common qualitative traditions in education:
Sequential and concurrent mixed-methods designs are increasingly common in education research:
Sequential Explanatory:
Phase 1: Quantitative survey (n=500) --> identify patterns
Phase 2: Qualitative interviews (n=20) --> explain patterns
Concurrent Triangulation:
QUAN data collection + QUAL data collection (simultaneous)
--> merge and compare findings at interpretation stage
Embedded Design:
Primary: RCT measuring learning outcomes
Secondary: Classroom observations embedded within treatment arm
import pandas as pd
from scipy import stats
# Reliability analysis for a Likert-scale instrument
def cronbach_alpha(df: pd.DataFrame) -> float:
"""
Compute Cronbach's alpha for internal consistency reliability.
df: DataFrame where each column is an item, each row a respondent.
Acceptable threshold: alpha >= 0.70 for research purposes.
"""
n_items = df.shape[1]
item_vars = df.var(axis=0, ddof=1)
total_var = df.sum(axis=1).var(ddof=1)
alpha = (n_items / (n_items - 1)) * (1 - item_vars.sum() / total_var)
return round(alpha, 4)
# Example usage with a 6-item motivation scale
data = pd.DataFrame({
'item1': [4, 5, 3, 4, 5, 3, 4, 5],
'item2': [3, 4, 3, 4, 5, 2, 4, 4],
'item3': [4, 5, 4, 5, 4, 3, 5, 5],
'item4': [3, 4, 2, 3, 5, 2, 3, 4],
'item5': [4, 5, 3, 4, 5, 3, 4, 5],
'item6': [3, 4, 3, 4, 4, 3, 4, 4],
})
alpha = cronbach_alpha(data)
print(f"Cronbach's alpha: {alpha}")
# alpha >= 0.70 indicates acceptable internal consistency
Structured classroom observation instruments:
Semi-structured interview best practices for educational research:
import statsmodels.api as sm
from statsmodels.formula.api import mixedlm
# Hierarchical Linear Model (HLM) -- essential for nested
# education data (students within classrooms within schools)
# Example: predicting math achievement from student SES
# and classroom teaching quality
model = mixedlm(
"math_score ~ student_ses + teaching_quality",
data=df,
groups=df["school_id"],
re_formula="~teaching_quality"
)
result = model.fit()
print(result.summary())
# Effect size calculation (Cohen's d)
def cohens_d(group1, group2):
n1, n2 = len(group1), len(group2)
var1, var2 = group1.var(), group2.var()
pooled_std = ((( n1 - 1) * var1 + (n2 - 1) * var2) / (n1 + n2 - 2)) ** 0.5
return (group1.mean() - group2.mean()) / pooled_std
Thematic analysis workflow (Braun and Clarke, 2006):
Tools: NVivo, ATLAS.ti, MAXQDA, or open-source Taguette for coding.
Educational research follows the APA Publication Manual (7th edition) and the AERA Standards for Reporting on Empirical Social Science Research:
Educational research involving human subjects (especially minors) requires Institutional Review Board (IRB) approval. Key considerations include informed consent from parents/guardians, assent from minors, data de-identification, and equitable participant selection. The Belmont Report principles (respect for persons, beneficence, justice) guide all education research ethics.
tools
Recommend AND run open-source AI tools, agents, Claude Code / Codex skills, and MCP servers for any stage of a literature review — searching, reading, extracting, synthesizing, screening, citation-checking, and paper writing. Use when the user asks "what tool should I use to..." OR "install/run/use <tool> to ..." for research/lit-review work: automating a survey or related-work section, PDF→Markdown extraction for LLMs (MinerU/marker/docling), PRISMA / systematic review (ASReview), citation-backed Q&A over PDFs (PaperQA2), wiring papers into Claude/Cursor via MCP (arxiv/paper-search/zotero servers), or chatting with a Zotero library. Ships a launcher (scripts/litrun.py) that installs each tool in an isolated venv and runs it. Curated catalog of 70+ vetted projects. 支持中英文(用于「文献综述工具选型」与「一键安装/运行」)。
development
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.
documentation
Use when the project collects primary data or runs a field, lab, or survey experiment, before the intervention begins — write the pre-analysis plan, size the sample from a power calculation, and register with the AEA RCT Registry. Apply after the design is chosen in aer-identification and before any outcome data are seen.
tools
Guide economists to authoritative data sources with explicit, confirmed data specifications before retrieval; interfaces with Playwright MCP to navigate portals and extract real data, not articles about data.