I have this data:
a <- c(12, 14, 16, 12, 14, 16, 12, 14, 16)
b <- c(107.13, 83.01, 164.01, 113.01, 85.48, 86.08, 112.96, 82.18, 51.92)
a
is the factor with 3 levels 12, 14 and 16 and b
is my response variable
When I try to run and plot pairs.anova
pairw.anova(y=a, x=b, conf.level = 0.95, method = "tukey", MSE = NULL, df.err = NULL)
I get this error:
dims [product 0] do not match the length of object [1]
Do you know why is it?
Thanks for your help.