statsmodels.stats.oneway.anova_generic#
- statsmodels.stats.oneway.anova_generic(means, variances, nobs, use_var='unequal', welch_correction=True, info=None)[source]#
Oneway Anova based on summary statistics
- Parameters:
- means
ndarray Mean of samples to be compared
- variances
floator array_like Residual (within) variance of each sample or pooled. If
variancesis scalar, then it is interpreted as pooled variance that is the same for all samples,use_varwill be ignored. Otherwise, the variances are used depending on theuse_varkeyword.- nobs
ndarray Number of observations for each sample. Statistics are weighted corresponding to nobs. Only relative sizes are relevant, any proportional change to nobs does not change the effect size.
- use_var{“unequal”, “equal”, “bf”},
optional If
use_varis “unequal”, then the variances can differ across samples and the effect size for Welch anova will be computed.- welch_correctionbool,
optional If this is false, then the Welch correction to the test statistic is not included. This allows the computation of an effect size measure that corresponds more closely to Cohen’s f.
- info
optional Not used yet.
- means
- Returns:
AnovaResultThis includes statistic and pvalue.