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.
development
Conduct rigorous thematic analysis (TA) of qualitative data following Braun and Clarke's (2006) six-phase framework. Use whenever the user mentions 'thematic analysis', 'TA', 'Braun and Clarke', 'qualitative coding', 'identifying themes', or asks for help analysing interviews, focus groups, open-ended survey responses, or transcripts to identify patterns. Also trigger for questions about inductive vs theoretical coding, semantic vs latent themes, essentialist vs constructionist epistemology, building a thematic map, or writing up a qualitative findings section. Covers all six phases, the four upfront analytic decisions, the 15-point quality checklist, and the five common pitfalls. Produces a Word document write-up and an annotated thematic map. Does NOT cover IPA, grounded theory, discourse analysis, conversation analysis, or narrative analysis — use a different method for those.
development
Guide users through writing a systematic literature review (SLR) following the PRISMA 2020 framework. Use this skill whenever the user mentions 'systematic review', 'systematic literature review', 'SLR', 'PRISMA', 'PRISMA 2020', 'PRISMA flow diagram', 'PRISMA checklist', or asks for help writing, structuring, or auditing a literature review that follows reporting guidelines. Also trigger when the user asks about inclusion/exclusion criteria for a review, search strategies for databases like Scopus/WoS/PubMed, study selection processes, risk of bias assessment, or narrative synthesis for a review paper. This skill covers the full PRISMA 2020 checklist (27 items), produces a Word document manuscript in strict journal article format, generates an annotated PRISMA flow diagram, and enforces APA 7th Edition referencing throughout. It does NOT cover meta-analysis or statistical pooling. By Chuah Kee Man.
testing
Performs placebo-in-time sensitivity analysis with hierarchical null model and optional Bayesian assurance. Use when checking model robustness, verifying lack of pre-intervention effects, or estimating study power.
data-ai
Fit, summarize, plot, and interpret a chosen CausalPy experiment. Use after the causal method has been selected, including when configuring PyMC/sklearn models and scale-aware custom priors.