educational-research-methods
Quantitative and qualitative research methods for education studies
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Quantitative and qualitative research methods for education studies
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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.
公司金融实证研究的"漏斗式选题查找器"。互动开场先后询问 (1) 研究方向、(2) 候选标题数量 N, 再扫描全球文献(已出版英文学术期刊 + SSRN working paper + 全球高校 department seminar 1 年内日程),基于 Edmans (2024) "1000 Rejections" 红线生成 N 个候选标题,**通过并行 subagent(Agent 工具)批量生成计划书 + 查新;每个 subagent 必须强制调用 Skill 工具加载 econfin-proposal 与 novelty-check 两个预设 skill 完成各自模块**,**只有当 novelty score >= 9 时(即 JF/JFE/RFS 顶刊层次),subagent 才把 proposal + 查新报告合并的 md 写入 F:\Dropbox\CC\选题大全\<研究方向短名>\(以"简短选题名称-分数"命名,子文件夹名由 Step 0 从用户输入的研究方向派生);< 9 分的选题在 subagent 内部直接丢弃,绝不写盘、绝不输出**。当用户说"找选题"、"帮我找选题"、"想做 X 方向"、 "empirical CF idea search"、"批量生成研究计划书"、"100 ideas"、"econfin-idea-finder" 时触发。
Create and compile beautiful Beamer presentations following the Rhetoric of Decks philosophy. Use when making slides, creating decks, or compiling .tex presentation files.
Scaffold a new research project with standard directory structure, CLAUDE.md template, and documented README. Use this at the start of every new project to ensure consistent organization.
Download, split, and deeply read academic PDFs. Use when asked to read, review, or summarize an academic paper. Splits PDFs into 4-page chunks, reads them in small batches, and produces structured reading notes — avoiding context window crashes and shallow comprehension.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
| name | educational-research-methods |
| description | Quantitative and qualitative research methods for education studies |
| metadata | {"openclaw":{"emoji":"📚","category":"domains","subcategory":"education","keywords":["education","research-methods","qualitative","quantitative","survey-design","classroom-research"],"source":"wentor"}} |
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.