eelbrain.pipeline.ANOVA
- class eelbrain.pipeline.ANOVA(x, model=None, vars=None)
ANOVA test
- Parameters:
x (str) – ANOVA model specification, including
subjectfor participant random effect (e.g.,"x * y * subject"; seeeelbrain.test.ANOVA).model (str) – Model for grouping trials before averaging (by default all fixed effects in
x). Should be specified in the"x % y"format (like interaction definitions) wherexandyare variables in the experiment’s events.
See also
Examples
Sample test definitions:
tests = { 'one_way': ANOVA('word_type * subject'), 'two_way': ANOVA('word_type * meaning * subject'), }