I'm wondering if anyone knows the R code to obtain the effect size for EACH PAIR of the pairwise comparisons? My codes:
two.way.contrast <- emmeans(two.way.esm, specs= pairwise~emotionF*typeF, adjust=NULL) %>%
summary(level=0.90)
summary(two.way.contrast)
I'm wondering how can I get partial eqta sqaure for each pair of the pairwise comparisons? Cohen's d is fine to. I could do my own conversion.
I could only get effect size for the ANOVA model, but couldn't figure out the effect size code for each pair of the pairwise comparisons.