ANOVA {structToolbox}R Documentation

ANOVA

Description

Applies ANOVA to each feature in a DatasetExperiment object.

Usage

ANOVA(alpha = 0.05, mtc = "fdr", formula, ss_type = "III", ...)

Arguments

alpha

The p-value threshold. Default alpha = 0.05.

mtc

Multiple test correction method passed to p.adjust. Default mtc = 'fdr'.

formula

The formula to use for ANOVA. See lm for details.

ss_type

The type of sum of squares to use. Can be I, II or III. Default is ss_type = 'III'.

...

additional slots and values passed to struct_class

Value

ANOVA object

Examples

D = iris_DatasetExperiment()
M = ANOVA(formula=y~Species)
M = model_apply(M,D)


[Package structToolbox version 1.0.1 Index]