statsmodels.emplike.descriptive.DescStatUV.ci_mean#
- DescStatUV.ci_mean(sig=0.05, method='gamma', epsilon=1e-08, gamma_low=-10000000000, gamma_high=10000000000)[source]#
Returns the confidence interval for the mean
- Parameters:
- sig
float,optional Significance level. Default is .05
- method
str,optional Root finding method, Can be ‘nested-brent’ or ‘gamma’. Default is ‘gamma’
‘gamma’ Tries to solve for the gamma parameter in the Lagrange (see Owen pg 22) and then determine the weights.
‘nested brent’ uses Brent’s method to find the confidence intervals but must maximize the likelihood ratio on every iteration.
gamma is generally much faster. If the optimization does not converge, try expanding the gamma_high and gamma_low variables.
- gamma_low
float,optional Lower bound for gamma when finding lower limit. If function returns f(a) and f(b) must have different signs, consider lowering gamma_low.
- gamma_high
float,optional Upper bound for gamma when finding upper limit. If function returns f(a) and f(b) must have different signs, consider raising gamma_high.
- epsilon
float,optional When using ‘nested-brent’, amount to decrease (increase) from the maximum (minimum) of the data when starting the search. This is to protect against the likelihood ratio being zero at the maximum (minimum) value of the data. If data is very small in absolute value (<10
**-6) consider shrinking epsilonWhen using ‘gamma’, amount to decrease (increase) the minimum (maximum) by to start the search for gamma. If function returns f(a) and f(b) must have different signs, consider lowering epsilon.
- sig
- Returns: