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.
As you demonstrated, you can use that
emmeans
package to compute the pairwise comparison. Then, you can calculate Cohen's d based on the means and SDs of each group.For instance, you can do like: