classic1wayAnova: Function to perform a One-way Anova statistical test on a...

Description Usage Arguments Value Author(s) Examples

View source: R/anova_analysis.R

Description

Function to perform a One-way Anova statistical test on a MsnBase dataset

Usage

1

Arguments

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

Value

A named vector containing all the different values of the aov model

Author(s)

Hélène Borges

Examples

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)))

DAPAR documentation built on April 11, 2021, 6 p.m.