Computes the likelihood interval for a parameter: LI(k) = theta : R(theta) >= 1/k = theta : S(theta) >= -log(k)
likelihood_interval(x, ...)
# S3 method for class 'fisher_mle'
likelihood_interval(x, data, model, k = 8, param = NULL, ...)Matrix with lower and upper bounds for each parameter
Unlike confidence intervals, likelihood intervals make no probability statements about the parameter. They simply identify the set of parameter values that are well-supported by the data.
Common choices for k:
k = 8: 1/8 likelihood interval (~95% CI equivalent)
k = 15: 1/15 likelihood interval (~99% CI equivalent)
k = 32: 1/32 likelihood interval (~99.9% CI equivalent)
For multivariate parameters, specify param to get a profile likelihood
interval for that parameter (profiling over the others).