View source: R/anova_analysis.R
testAnovaModels | R Documentation |
Applies a statistical test on each element of a list of linear models
testAnovaModels(aov_fits, test = "Omnibus")
aov_fits |
a list of linear models, such as those outputted by applyAnovasOnProteins |
test |
a character string among "Omnibus", "TukeyHSD", "TukeySinglestep", "TukeyStepwise", "TukeyNoMTC", "DunnettSinglestep", "DunnettStepwise" and "DunnettNoMTC". "Omnibus" tests the all-mean equality, the Tukey tests compares all pairs of means and the Dunnet tests compare all the means to the first one. For multiple tests (Dunnet's or Tukey's) it is possible to correct for multiplicity (either with single-step or step-wise FWER) or not. All the Tukey's and Dunnet's tests use the multcomp package expect for "TukeyHSD" which relies on the stats package. "TukeyHSD" and "TukeyStepwise" gives similar results. |
a list of 2 tables (p-values and fold-changes, respecively)
Thomas Burger
data(Exp1_R25_prot, package='DAPARdata')
exdata <- Exp1_R25_prot[1:5,]
testAnovaModels(applyAnovasOnProteins(exdata))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.