LDuncan {laercio} | R Documentation |
Duncan test to compare means.
LDuncan(anova, which = "", conf.level = 0.95)
anova |
A aov fitted model object. |
which |
A term in the fitted model for be used in the test. Defaults to all the terms. |
conf.level |
A numeric value between zero and one. Default is 0.95. |
Laercio Junio da Silva laerciojunio@yahoo.com.br
require(laercio) ldata$trat <- as.factor(ldata$trat) anv <- aov(resp~trat,ldata) anova(anv) LDuncan(anv,"trat")