statsmodels.stats.oneway.fstat_to_wellek¶ statsmodels.stats.oneway.fstat_to_wellek(f_stat, n_groups, nobs_mean)[source]¶ Convert F statistic to wellek’s effect size eps squared This computes the following effect size : es = f_stat * (n_groups - 1) / nobs_mean Parameters f_statfloat or ndarrayTest statistic of an F-test. n_groupsintNumber of groups in oneway comparison nobs_meanfloat or ndarrayAverage number of observations across groups. Returns epsfloat or ndarrayWellek’s effect size used in anova equivalence test