statsmodels.stats.weightstats._zconfint_generic¶
- statsmodels.stats.weightstats._zconfint_generic(mean, std_mean, alpha, alternative)[source]¶
generic normal-confint based on summary statistic
- Parameters:¶
- mean
floatorndarray Value, for example mean, of the first sample.
- std_mean
floatorndarray Standard error of the difference value1 - value2
- alpha
float Significance level for the confidence interval, coverage is
1-alpha- alternative
str The alternative hypothesis, H1, has to be one of the following
‘two-sided’ : H1:
value1 - value2 - diffnot equal to 0.‘larger’ : H1:
value1 - value2 - diff > 0‘smaller’ : H1:
value1 - value2 - diff < 0
- mean
- Returns:¶
Last update:
Jun 10, 2024