Hello team,
I have a Anova related question and would really appreciate some help.
I am trying to great a table with:
The estimate differences between means,
Standard error of the differences (SED), and the 95% confidence intervals for the differences between means.
I can generate some results using predict means but this does not give me the pairwise comparisons needed above.
Does anyone know of a way to do this?
Thank you heaps!!
I am using Iris as some mock code.
IRISLM<- lm(`Sepal.Width`~`Species`, data = iris)
# you may need to install the predictmeans packadge
library(predictmeans)
predictIRIS<-predictmeans(IRISLM, modelterm = "Species", pairwise = TRUE)