Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

cognitive-science-statistical-analysis认知科学统计分析

Agent Skill

cognitive-science-statistical-analysis 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,406

周安装

141

GitHub Stars

20

下载量

1,517
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cognitive-science-statistical-analysis(认知科学统计分析)
来源仓库:https://github.com/haoxuanlithuai/awesome_cognitive_and_neuroscience_skills
仓库路径:skills/cognitive-science-statistical-analysis
安装命令:
npx skills add https://github.com/haoxuanlithuai/awesome_cognitive_and_neuroscience_skills --skill 'Cognitive Science Statistical Analysis'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/haoxuanlithuai/awesome_cognitive_and_neuroscience_skills --skill 'Cognitive Science Statistical Analysis'

简介

cognitive-science-statistical-analysis 编码认知科学领域的专用统计知识库。

  • 适用于在 Codex、Claude、Cursor、Gemini CLI 中选择重复测量 ANOVA 或混合模型等分析方法。
  • 提供随机效应设定、多重比较校正与报告格式的专业建议。
  • 覆盖被试与项目双因素设计的复杂建模场景。
  • 需结合具体数据类型与研究假设谨慎选择模型。

SKILL.md

Cognitive Science Statistical Analysis

Purpose

This skill encodes domain-specific statistical knowledge for cognitive science and neuroscience research. It addresses the modeling decisions, correction strategies, and reporting conventions that a general-purpose statistician or programmer would get wrong without training in the field. For concrete analysis recipes with code, see references/common-analyses.md.

When to Use This Skill

  • Choosing between repeated-measures ANOVA and mixed-effects models for a cognitive experiment
  • Specifying random effects structure for designs with subjects and items
  • Deciding how to handle reaction time (RT) data distributions
  • Selecting the appropriate multiple comparison correction
  • Deciding whether to use frequentist or Bayesian analysis
  • Reporting effect sizes and statistical results for journal submission

Research Planning Protocol

Before executing the domain-specific steps below, you MUST:

  1. State the research question — What specific hypothesis is this statistical analysis testing?
  2. Justify the method choice — Why this statistical model? What alternatives were considered?
  3. Declare expected outcomes — What pattern of results would support vs. refute the hypothesis?
  4. Note assumptions and limitations — What does this method assume? Where could it mislead?
  5. Present the plan to the user and WAIT for confirmation before proceeding.

For detailed methodology guidance, see the research-literacy skill.

⚠️ Verification Notice

This skill was generated by AI from academic literature. All parameters, thresholds, and citations require independent verification before use in research. If you find errors, please open an issue.

Repeated-Measures ANOVA vs. Mixed-Effects Models

When to Use Repeated-Measures ANOVA

  • Fully balanced design (no missing data, equal cell sizes)
  • Only subjects as a random factor (no item variability)
  • Simple factorial structure (2-3 factors, no continuous predictors)
  • Sphericity is met or correctable (Greenhouse-Geisser / Huynh-Feldt)

When to Use Mixed-Effects Models (LMM/GLMM)

  • Crossed random effects: Both subjects and items sampled from populations (Baayen, Clark, & Lucy, 2008; Clark, 1973). This is the norm in psycholinguistics, memory research, and any paradigm with stimulus variability.
  • Unbalanced data or missing observations
  • Continuous predictors (e.g., word frequency, stimulus duration)
  • Non-normal response distributions (RT, accuracy)
  • Need to generalize over both subjects AND items simultaneously
Critical domain knowledge: Clark (1973) demonstrated that failing to treat items as random effects inflates Type I error. This remains one of the most common statistical errors in cognitive science. If your stimuli are sampled from a larger population (e.g., words, faces, scenes), you must account for item variability.

Decision Logic

Are your stimuli sampled from a larger population?
 |
 +-- YES --> Mixed-effects model with crossed random effects
 | (subjects and items)
 |
 +-- NO (e.g., fixed set of 4 task conditions) -->
 |
 +-- Any missing data, unbalanced cells, or continuous predictors?
 | |
 | +-- YES --> Mixed-effects model (subjects as random effect)
 | |
 | +-- NO --> Repeated-measures ANOVA is acceptable
 |
 +-- Need trial-level analysis (e.g., RT distributions)?
 |
 +-- YES --> Mixed-effects model (operates on individual trials)
 +-- NO --> Repeated-measures ANOVA on condition means

Random Effects Structure

The Maximal Random Effects Principle

Barr et al. (2013) recommend fitting the maximal random effects structure justified by the design to minimize Type I error. This means including random intercepts and slopes for all within-unit factors.

For a typical 2x2 design with factors A (within-subjects, within-items) and B (within-subjects, between-items):

# Maximal structure (Barr et al., 2013)
lmer(RT ~ A * B + (1 + A * B | Subject) + (1 + A | Item), data = d)

When Maximal Models Fail to Converge

Convergence failures are common with complex random effects. Use this hierarchy (Barr et al., 2013; Matuschek et al., 2017):

  1. First: Try a different optimizer (bobyqa, nlminb) with increased iterations (20000 iterations; lme4 default recommendation)
  2. Second: Remove correlations between random effects (use || in lme4)
  3. Third: Remove the highest-order random slopes first (interaction before main effects)
  4. Fourth: Use a parsimonious approach guided by likelihood ratio tests (Matuschek et al., 2017)
Do NOT simply drop all random slopes to achieve convergence. This inflates Type I error and undermines the purpose of mixed-effects modeling (Barr et al., 2013).

Common Cognitive Science Designs and Their Random Effects

DesignRandom EffectsRationale
Lexical decision (words as items)`(1 + conditionsubj) + (1 + condition
Stroop task (fixed conditions)`(1 + congruencysubj)`
Picture naming (pictures as items)`(1 + SOAsubj) + (1
Multi-site study`(1 + conditionsubj) + (1

Handling Reaction Time Data

RT data in cognitive experiments are positively skewed, bounded below by physiological limits, and often contaminated by outliers. The approach matters.

RT Outlier Exclusion

Apply these criteria before modeling (Ratcliff, 1993; Luce, 1986):

CriterionThresholdSource
Fast outliers (anticipatory)< 200 msWhelan, 2008; Ratcliff, 1993
Slow absolute cutoff> 2000-3000 ms (task-dependent)Ratcliff, 1993
Within-subject SD trimming> 3 SD from participant's condition meanVan Selst & Jolicoeur, 1994
Within-subject MAD trimming> 3 MAD from participant's condition medianLeys et al., 2013 (more robust to skew)
Task-specific note: For simple RT tasks (e.g., detection), use 100 ms as the fast cutoff (Whelan, 2008). For choice RT tasks (e.g., lexical decision), use 200 ms (Ratcliff, 1993). Always report exclusion rates.

RT Transformation and Modeling Strategy

Is your primary interest in RT distributions (not just means)?
 |
 +-- YES --> Drift Diffusion Model or ex-Gaussian fitting
 |
 +-- NO --> Choose a modeling approach:
 |
 +-- Option 1: Log-transform RT, then fit LMM (Gaussian)
 | - Pro: Simple, widely understood
 | - Con: Back-transformation of means is biased;
 | changes the hypothesis being tested
 | (Lo & Andrews, 2015)
 |
 +-- Option 2: Inverse-transform RT (1/RT = speed), then LMM
 | - Pro: Often achieves better normality than log
 | - Con: Same back-transformation issues as log
 | (Ratcliff, 1993)
 |
 +-- Option 3 (Recommended): Generalized LMM with
 Gamma family + identity link
 - Pro: Models RT in original units; handles skew
 directly; avoids transformation issues
 (Lo & Andrews, 2015)
 - Con: Computationally slower; may have convergence
 issues with complex random effects

Recommended default: Gamma GLMM with identity link (Lo & Andrews, 2015). Report results on the original millisecond scale.

# Recommended RT model (Lo & Andrews, 2015)
glmer(RT ~ condition * group + (1 + condition | subj) + (1 | item),
 family = Gamma(link = "identity"), data = d)

Multiple Comparison Correction

Decision Guide for Cognitive Science

ScenarioMethodRationaleSource
Small number of planned contrasts (< 5)No correction or HolmPlanned contrasts based on a priori hypotheses do not require correction if specified before data collectionRubin, 2021
All pairwise comparisons after ANOVATukey HSDControls family-wise error for all pairwise comparisons; assumes equal varianceTukey, 1953
Many tests, correlated (e.g., EEG channels)Cluster-based permutationRespects spatial/temporal correlation structureMaris & Oostenveld, 2007
Many tests, independentBonferroni-HolmMore powerful than Bonferroni; step-down procedureHolm, 1979
Large-scale testing (fMRI voxels, genomics)FDR (Benjamini-Hochberg)Controls false discovery rate rather than family-wise error; appropriate when some false positives are tolerableBenjamini & Hochberg, 1995
Exploratory whole-brain fMRICluster-level FWE (with cluster-forming threshold p < 0.001)Eklund et al. (2016) showed that p < 0.01 cluster-forming threshold inflates false positive rates to ~70%Eklund et al., 2016
Confirmatory ROI analysis in fMRISmall volume correction (SVC) with FWERestricts search space to a priori ROIWorsley et al., 1996

When NOT to Correct

  • Single planned contrast testing a specific a priori hypothesis (Rubin, 2021)
  • Sequential Bayesian testing with BF stopping rules (evidence accumulation replaces correction; Schoenbrodt et al., 2017)

Bayesian Alternatives

When to Use Bayesian Analysis

  • Quantifying evidence for the null hypothesis: Frequentist tests cannot support H0; Bayes factors can (Wagenmakers, 2007)
  • Small sample sizes: Bayesian methods with informative priors can be more efficient (Kruschke, 2015)
  • Sequential testing: Bayes factors allow continuous monitoring without alpha inflation (Schoenbrodt et al., 2017)
  • Complex models where p-values are unreliable: Mixed models with small cluster sizes, or when asymptotic assumptions are questionable

Bayes Factor Interpretation

BF10 RangeEvidence CategorySource
< 1/10Strong evidence for H0Jeffreys, 1961; Lee & Wagenmakers, 2013
1/10 to 1/3Moderate evidence for H0Lee & Wagenmakers, 2013
1/3 to 3Anecdotal / inconclusiveLee & Wagenmakers, 2013
3 to 10Moderate evidence for H1Lee & Wagenmakers, 2013
> 10Strong evidence for H1Lee & Wagenmakers, 2013

Recommended Tools

ToolUse CaseLanguage
BayesFactorStandard designs (t-test, ANOVA, correlation, regression)R
brmsComplex models (multilevel, non-Gaussian, multivariate)R (Stan backend)
JASPGUI-based Bayesian analysis for standard testsStandalone
PyMCCustom Bayesian modelsPython

Reporting Bayes Factors

Report the exact BF, not just the category (Wagenmakers et al., 2018):

"A Bayesian paired-samples t-test indicated moderate evidence for a difference between conditions, BF10 = 5.3 (default Cauchy prior, r = 0.707)."

Always specify:

  1. The prior used (e.g., default Cauchy with scale r = 0.707 for BayesFactor t-test; Rouder et al., 2009)
  2. Direction (BF10 = evidence for H1 over H0)
  3. Robustness check: report BF across a range of prior widths

Effect Size Reporting

APA 7th Edition Requirements

APA 7th edition (2020, Section 6.6) requires reporting effect sizes for all primary analyses. The specific measure depends on the test:

TestEffect SizeInterpretation BenchmarksSource
t-test (between groups)Cohen's d0.2 small, 0.5 medium, 0.8 largeCohen, 1988
t-test (within subjects)Cohen's d_z or d_avd_z uses SD of difference scoresLakens, 2013
One-way ANOVAeta-squared or omega-squared0.01 small, 0.06 medium, 0.14 largeCohen, 1988
Factorial ANOVApartial eta-squared0.01 small, 0.06 medium, 0.14 largeCohen, 1988; Richardson, 2011
Mixed-effects modelsemi-partial R-squaredNo universal benchmarks; report CIRights & Sterba, 2019
Correlationr0.1 small, 0.3 medium, 0.5 largeCohen, 1988
Chi-squareCramer's V or phiDepends on dfCohen, 1988
Domain note: Always report confidence intervals around effect sizes (APA 7th, 2020). Use effectsize (R) or statsmodels (Python) for computation. The benchmarks above are Cohen's generic guidelines; paradigm-specific benchmarks are more informative (see ../cogsci-power-analysis/references/effect-sizes.md).

For Mixed-Effects Models

Traditional effect sizes are not straightforward for mixed models. Options:

  1. Semi-partial R-squared via the r2glmm or effectsize package (Rights & Sterba, 2019)
  2. Standardized regression coefficients: Standardize predictors before fitting
  3. Conditional and marginal R-squared: R2m (fixed effects only) and R2c (fixed + random) via MuMIn::r.squaredGLMM() (Nakagawa & Schielzeth, 2013)

Common Statistical Mistakes in Cognitive Science

1. Treating Items as Fixed Effects

Problem: Analyzing condition means averaged over items, ignoring item variability, fails to generalize beyond the specific stimuli used (Clark, 1973).

Fix: Use mixed-effects models with crossed random effects for subjects and items.

2. Circular Analysis ("Double-Dipping") in Neuroimaging

Problem: Selecting voxels/channels/time-windows based on the effect of interest, then testing that same effect (Kriegeskorte et al., 2009). Inflates effect sizes by 2x or more (Vul et al., 2009).

Fix: Use independent localizer, leave-one-out cross-validation, or whole-brain corrected analysis.

3. Analyzing Accuracy with ANOVA Instead of Logistic Models

Problem: ANOVA on proportion correct violates normality and homogeneity assumptions, especially at ceiling (> 90%) or floor (< 10%) (Jaeger, 2008; Dixon, 2008).

Fix: Use logistic mixed-effects model on binary (correct/incorrect) trial-level data.

4. Inappropriate Outlier Exclusion

Problem: Removing "outlier" participants based on the dependent variable (e.g., excluding subjects whose effects go in the wrong direction) without a priori criteria.

Fix: Define exclusion criteria before data collection. Base exclusions on performance metrics (accuracy below chance, excessive RTs), not on the effect of interest.

5. Running ANOVAs on RT Without Addressing Skew

Problem: ANOVA on raw RT means violates normality. Condition means conceal distributional differences (Ratcliff, 1993).

Fix: Use Gamma GLMM (Lo & Andrews, 2015) or transform RTs, and supplement with distributional analysis if warranted.

6. Using Uncorrected Cluster-Forming Thresholds in fMRI

Problem: Cluster-based inference with cluster-forming thresholds more lenient than p < 0.001 (uncorrected) produces unacceptable false positive rates up to 70% (Eklund et al., 2016).

Fix: Use voxel-level threshold of p < 0.001 (uncorrected) as minimum cluster-forming threshold, or use voxel-level FWE/FDR correction.

7. Reporting Correlation P-Values Without CIs

Problem: A "significant" correlation of r = 0.30 with N = 50 has a 95% CI of [0.02, 0.53] -- the true effect could be near zero (Cumming, 2014).

Fix: Always report bootstrap 95% CI for correlations. Use 10000 bootstrap samples (Efron & Tibshirani, 1993).

Minimum Statistical Reporting Checklist

Based on APA 7th edition (2020) and Appelbaum et al. (2018):

  • Exact test statistic (F, t, chi-square, z) with degrees of freedom
  • Exact p-value (not just "< 0.05"), to 3 decimal places or "<.001"
  • Effect size with confidence interval
  • For mixed models: random effects structure, optimizer, convergence confirmation
  • For multiple comparisons: correction method and justification
  • Sample sizes for each group/condition
  • Data exclusion criteria (a priori) and proportion excluded
  • For Bayesian: prior specification, exact BF, robustness check

References

  • American Psychological Association. (2020). *Publication Manual of the APA* (7th ed.).
  • Appelbaum, M., et al. (2018). Journal article reporting standards for quantitative research. *American Psychologist*, 73(1), 3-25.
  • Baayen, R. H., Davidson, D. J., & Bates, D. M. (2008). Mixed-effects modeling with crossed random effects for subjects and items. *Journal of Memory and Language*, 59(4), 390-412.
  • Barr, D. J., Levy, R., Scheepers, C., & Tily, H. J. (2013). Random effects structure for confirmatory hypothesis testing. *Journal of Memory and Language*, 68(3), 255-278.
  • Benjamini, Y., & Hochberg, Y. (1995). Controlling the false discovery rate. *Journal of the Royal Statistical Society B*, 57(1), 289-300.
  • Clark, H. H. (1973). The language-as-fixed-effect fallacy. *Journal of Verbal Learning and Verbal Behavior*, 12(4), 335-359.
  • Cohen, J. (1988). *Statistical Power Analysis for the Behavioral Sciences* (2nd ed.). Erlbaum.
  • Cumming, G. (2014). The new statistics: Why and how. *Psychological Science*, 25(1), 7-29.
  • Dixon, P. (2008). Models of accuracy in repeated-measures designs. *Journal of Memory and Language*, 59(4), 447-456.
  • Efron, B., & Tibshirani, R. J. (1993). *An Introduction to the Bootstrap*. Chapman and Hall.
  • Eklund, A., Nichols, T. E., & Knutsson, H. (2016). Cluster failure: Why fMRI inferences for spatial extent have inflated false-positive rates. *PNAS*, 113(28), 7900-7905.
  • Holm, S. (1979). A simple sequentially rejective multiple test procedure. *Scandinavian Journal of Statistics*, 6(2), 65-70.
  • Jaeger, T. F. (2008). Categorical data analysis: Away from ANOVAs and toward logit mixed models. *Journal of Memory and Language*, 59(4), 434-446.
  • Jeffreys, H. (1961). *Theory of Probability* (3rd ed.). Oxford University Press.
  • Kriegeskorte, N., et al. (2009). Circular analysis in systems neuroscience. *Nature Neuroscience*, 12(5), 535-540.
  • Kruschke, J. K. (2015). *Doing Bayesian Data Analysis* (2nd ed.). Academic Press.
  • Lakens, D. (2013). Calculating and reporting effect sizes. *Frontiers in Psychology*, 4, 863.
  • Lee, M. D., & Wagenmakers, E.-J. (2013). *Bayesian Cognitive Modeling*. Cambridge University Press.
  • Leys, C., et al. (2013). Detecting outliers: Do not use standard deviation around the mean. *Journal of Experimental Social Psychology*, 49(4), 764-766.
  • Lo, S., & Andrews, S. (2015). To transform or not to transform: Using generalized linear mixed models to analyse reaction time data. *Frontiers in Psychology*, 6, 1171.
  • Luce, R. D. (1986). *Response Times*. Oxford University Press.
  • Maris, E., & Oostenveld, R. (2007). Nonparametric statistical testing of EEG- and MEG-data. *Journal of Neuroscience Methods*, 164(1), 177-190.
  • Matuschek, H., et al. (2017). Balancing Type I error and power in linear mixed models. *Journal of Memory and Language*, 94, 305-315.
  • Nakagawa, S., & Schielzeth, H. (2013). A general and simple method for obtaining R2 from generalized linear mixed-effects models. *Methods in Ecology and Evolution*, 4(2), 133-142.
  • Ratcliff, R. (1993). Methods for dealing with reaction time outliers. *Psychological Bulletin*, 114(3), 510-532.
  • Richardson, J. T. E. (2011). Eta squared and partial eta squared as measures of effect size. *Educational Research Review*, 6(2), 135-147.
  • Rights, J. D., & Sterba, S. K. (2019). Quantifying explained variance in multilevel models. *Journal of Educational and Behavioral Statistics*, 44(2), 223-263.
  • Rouder, J. N., et al. (2009). Bayesian t tests for accepting and rejecting the null hypothesis. *Psychonomic Bulletin & Review*, 16(2), 225-237.
  • Rubin, M. (2021). When to adjust alpha during multiple testing. *Synthese*, 199, 10969-11000.
  • Schoenbrodt, F. D., et al. (2017). Sequential hypothesis testing with Bayes factors. *Psychological Methods*, 22(2), 322-339.
  • Van Selst, M., & Jolicoeur, P. (1994). A solution to the effect of sample size on outlier elimination. *Quarterly Journal of Experimental Psychology*, 47A(3), 631-650.
  • Vul, E., et al. (2009). Puzzlingly high correlations in fMRI studies of emotion, personality, and social cognition. *Perspectives on Psychological Science*, 4(3), 274-290.
  • Wagenmakers, E.-J. (2007). A practical solution to the pervasive problems of p values. *Psychonomic Bulletin & Review*, 14(5), 779-804.
  • Wagenmakers, E.-J., et al. (2018). Bayesian inference for psychology. Part II: Example applications with JASP. *Psychonomic Bulletin & Review*, 25(1), 58-76.
  • Whelan, R. (2008). Effective analysis of reaction time data. *The Psychological Record*, 58(3), 475-482.
  • Worsley, K. J., et al. (1996). A unified statistical approach for determining significant signals in images of cerebral activation. *Human Brain Mapping*, 4(1), 58-73.

See references/common-analyses.md for concrete analysis recipes with code patterns.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.33%
按下载量换算551

Claude

29.56%
按下载量换算448

Cursor

18.79%
按下载量换算285

Gemini CLI

10.45%
按下载量换算159

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills