Pairwise one-way ANOVA
Test that two groups have the same population mean
Compute the one-way ANOVA test for pairwise samples, from a given reference sample.
The one-way ANOVA tests the null hypothesis that two or more groups have the same population mean. The test is applied to samples from two or more groups, possibly with differing sizes. It is a parametric version of the Kruskal-Wallis test.
Input: a table containing the sample measurements, with the name of the samples.
Output: a table listing the one-way ANOVA F statistic, and the p-value for each pairwise comparison testing.
Config Parameters:
- "column_names": The columns used for pairwise comparison. By default, the first three columns are used.
Note: the ANOVA test has important assumptions that must be satisfied in order for the associated p-value to be valid.
- The samples are independent.
- Each sample is from a normally distributed population.
- The population standard deviations of the groups are all equal. This property is known as homoscedasticity. If these assumptions are not true for a given set of data, it may still be possible to use the Kruskal-Wallis H-test or the Alexander-Govern test although with some loss of power.
For more details, see https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.f_oneway.html
Input
Output
Configuration
preselected_column_names
The names of column to pre-select for comparison. By default, the first 500 columns are used
List
-1
name
The name of the column(s) to pre-select
string
is_regex
Set True if it is a text pattern (regular expression), False otherwise
bool
reference_column
The column used as reference for pairwise comparison. Only this column is compared with the others.
string
row_tag_key
The key of the row tag (representing the group axis) along which one would like to compare each column. This parameter is not used if a `reference column` is given.
string
adjust_pvalue
Adjust p-values for multiple tests.
List
1
method
The method used to adjust (correct) p-values
string
bonferroni
fdr_bh
fdr_by
fdr_tsbh
fdr_tsbky
sidak
holm-sidak
holm
simes-hochberg
hommel
bonferroni
alpha
FWER, family-wise error rate. Default is 0.05
float
0.05