ANOVA | R Documentation |
Analysis of Variance (ANOVA) is a univariate method used to analyse the difference among group means. Multiple test corrected p-values are computed to indicate significance for each feature.
ANOVA(alpha = 0.05, mtc = "fdr", formula, ss_type = "III", ...)
alpha |
(numeric) The p-value cutoff for determining significance. The default is |
mtc |
(character) Multiple test correction method. Allowed values are limited to the following:
The default is |
formula |
(formula) A symbolic description of the model to be fitted. |
ss_type |
(character) ANOVA sum of squares. Allowed values are limited to the following:
The default is |
... |
Additional slots and values passed to |
This object makes use of functionality from the following packages:
car
A ANOVA
object with the following output
slots:
f_statistic | (data.frame) The value of the calculated statistic. |
p_value | (data.frame) The probability of observing the calculated statistic if the null hypothesis is true. |
significant | (data.frame) True/False indicating whether the p-value computed for each variable is less than the threshold. |
A ANOVA
object inherits the following struct
classes:
[ANOVA]
>> [model]
>> [struct_class]
Fox J, Weisberg S (2019). An R Companion to Applied Regression, Third edition. Sage, Thousand Oaks CA. https://socialsciences.mcmaster.ca/jfox/Books/Companion/.
M = ANOVA(
alpha = 0.05,
mtc = "fdr",
formula = y ~ x,
ss_type = "III")
D = iris_DatasetExperiment()
M = ANOVA(formula=y~Species)
M = model_apply(M,D)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.