can anyone tell me how to get other output statistics for my ANOVA results? I want a result table with the sum of squares (SS), the number of degrees of freedom (df), the F-statistic and the corresponding p-value.
But so far I only get Chisq, Df, Pr(>Chisq) output.
Thanks in advance for the help.
# Fit the classical model
model1 <- lmer(avgAmplitude ~ stimulusAge * stimulusResponse * congruency * subjectType + (1|id), data = dataset1)
library (car)
Anova(model1)
Here an excerpt of the data frame
- played around with several packages: ezanova, afex
- changed type-argument in car::Anova()