scipy.stats.mstats.
f_oneway#
- scipy.stats.mstats.f_oneway(*args)[source]#
Performs a 1-way ANOVA, returning an F-value and probability given any number of groups. From Heiman, pp.394-7.
Usage:
f_oneway(*args), where*argsis 2 or more arrays, one per treatment group.Deprecated since version 2.0.0:
scipy.stats.mstats.f_onewayis deprecated as of SciPy 2.0.0 and will be removed, along with thescipy.stats.mstatsnamespace, in SciPy 2.4.0. For similar functionality, usescipy.stats.f_onewaywith MArray(s) instead of NumPy masked array(s).- Returns:
- statisticfloat
The computed F-value of the test.
- pvaluefloat
The associated p-value from the F-distribution.