Re: [R] Split Plot and Tukey

2010-02-17 Thread RICHARD M. HEIBERGER
Please look at the maiz example, the last example in ?MMC in the HH package, to see how to display pairwiuse contrasts in split-plot experiments. Look at the entire example, all the way to the end of the help file. Rich __ R-help@r-project.org mailing l

Re: [R] Split Plot and Tukey

2010-02-17 Thread Gabriela Cendoya
Hi: this should work, (but you don't specify what is "ganhos" but I'm guessing is the right object...) anava = aov(ganhos ~ Blocos + Trat*Supl + Error(Blocos/Trat)) df<-summary(anava)[[2]][[1]][2,1] MSerror <- summary(anava)[[2]][[1]][2,3] HSD.test(ganhos, Trat, df , MSerror, alpha = 0.05) Gab