LScottKnott {laercio} | R Documentation |
Scott-Knott test to group means.
LScottKnott(anova, which = "",conf.level=0.95)
anova |
A aov fitted model object. |
which |
The factor in the fitted model for be used in the test. |
conf.level |
A numeric value between zero and one. Default is 0.95. |
Laercio Junio da Silva laerciojunio@yahoo.com.br
GATES, C.E.; BILBRO, J.D. Illustration of a Cluster Analysis Method for Mean Separation. Agronomy Journal, Vol.70, May-June 1978.
require(laercio) ldata$trat <- as.factor(ldata$trat) anv <- aov(resp~trat,ldata) anova(anv) LScottKnott(anv,"trat")