Description Usage Arguments Value Author(s) Examples
View source: R/anova_analysis.R
Function to perform a One-way Anova statistical test on a MsnBase dataset
1 | classic1wayAnova(current_line, conditions)
|
current_line |
The line currently treated from the quantitative data to perform the ANOVA |
conditions |
The conditions represent the different classes of the studied factor |
A named vector containing all the different values of the aov model
Hélène Borges
1 2 3 4 5 | utils::data(Exp1_R25_prot, package='DAPARdata')
obj <- Exp1_R25_prot[1:1000]
keepThat <- mvFilterGetIndices(obj, condition='WholeMatrix', threshold=ncol(obj))
obj <- mvFilterFromIndices(obj, keepThat)
anova_tests <- t(apply(Biobase::exprs(obj),1, classic1wayAnova, conditions=as.factor(Biobase::pData(obj)$Condition)))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.