statsmodels.stats.oneway.fstat_to_wellek¶ statsmodels.stats.oneway.fstat_to_wellek(f_stat, n_groups, nobs_mean)[source]¶ 将F统计量转换为Wellek的效果量eps平方 这计算了以下效应量: es = f_stat * (n_groups - 1) / nobs_mean Parameters:¶ f_statfloat or ndarrayF检验的检验统计量。 n_groupsint单因素比较中的组数 nobs_meanfloat or ndarray各组观测值的平均数量。 Returns:¶ epsfloat or ndarrayWellek 在方差分析等效性检验中使用的效果量 Last update: Oct 16, 2024