statsmodels.stats.weightstats._tconfint_generic¶
- statsmodels.stats.weightstats._tconfint_generic(mean, std_mean, dof, alpha, alternative)[source]¶
generic t-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
- dof
intorfloat Degrees of freedom
- 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