If I use lme
for mixed ANOVA as follow
lme_model=lme(dv ~ between*within, data frame, random=~1|ID, correlation=corCompSymm(form=~1|ID))
how can I perform between group comparison for every level of within factor?
This great answer advice to use anova
with L
argument. But I can't understand how.
Thanks for the help