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:¶
 - meansarray_like
 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
intor array_like Number of observations for the samples. If nobs is scalar, then it is assumed that all samples have the same number
nobsof observation, i.e. a balanced sample case. Otherwise, statistics will be 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”}
 If
use_varis “unequal”, then the variances can differ across samples and the effect size for Welch anova will be computed.- welch_correctionbool
 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
notusedyet 
- Returns:¶
 - res
resultsinstance This includes statistic and pvalue.
- res