snk.test {GAD} | R Documentation |
Student-Newman-Keuls (SNK) procedure
Description
This function performs a SNK post-hoc test of means on the factors of a chosen term of the model, comparing among levels of one factor within each level of other factor or combination of factors.
Usage
snk.test(object, term = NULL, among = NULL, within = NULL, anova.tab = NULL)
Arguments
object |
an object of class " |
term |
term of the model to be analysed. Argument |
among |
specifies the factor which levels will be compared among. Need to be specified if the term to be analysed envolves more than one factor. |
within |
specifies the factor or combination of factors that will be compared within level among. |
anova.tab |
an object containing the results returned by |
Details
SNK is a stepwise procedure for hypothesis testing. First the sample means are sorted, then the pairwise studentized range (q) is calculated by dividing the differences between means by the standard error, which is based upon the average variance of the two samples.
Value
A list containing the standard error, the degrees of freedom and pairwise comparisons among levels of one factor within each level of other(s) factor(s).
Author(s)
MaurĂcio Camargo (mauricio.camargo@furg.br)
Eliandro Gilbert (eliandrogilbert@gmail.com)
Leonardo Sandrini-Neto (leonardosandrini@ufpr.br)
See Also
Examples
library(GAD)
# Example 1
data(rohlf95)
CG <- as.fixed(rohlf95$cages) # a fixed factor
MQ <- as.random(rohlf95$mosquito) # a random factor nested in cages
model <- lm(wing ~ CG + CG%in%MQ, data = rohlf95)
model.tab <- gad(model) # storing ANOVA table in an object
model.tab # checking ANOVA results
estimates(model) # checking model structure
# Comparison among levels of mosquito ("MQ") within each level of cage ("CG")
snk.test(model, term = "CG:MQ", among = "CG", within = "MQ", anova.tab = model.tab)
# Example 2
data(snails)
O <- as.random(snails$origin) # a random factor
S <- as.random(snails$shore) # a random factor orthogonal to origin
B <- as.random(snails$boulder) # a random factor nested in shore
C <- as.random(snails$cage) # a random factor nested in the combination of boulder and origin
model2 <- lm(growth ~ O + S + O*S + B%in%S + O*(B%in%S) + C%in%(O*(B%in%S)), data = snails)
model2.tab <- gad(model2, quasi.f = FALSE) # storing ANOVA table in an object
model2.tab # checking ANOVA results
estimates(model2, quasi.f = FALSE) # checking model structure
# Comparison among levels of "origin"
snk.test(model2, term = "O", anova.tab = model2.tab)
# Comparison among levels of "shore" within each level of "origin"
snk.test(model2, term = "O:S", among = "S", within = "O", anova.tab = model2.tab)
# If term "O:S:B" were significant, we could try
snk.test(model2, term = "O:S:B", among = "B", within = "O:S", anova.tab = model2.tab)