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
float
orndarray
Value, for example mean, of the first sample.
- std_mean
float
orndarray
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 - diff
not equal to 0.‘larger’ : H1:
value1 - value2 - diff > 0
‘smaller’ : H1:
value1 - value2 - diff < 0
- mean
- Returns