View source: R/core-fisherian.R
| likelihood_interval | R Documentation |
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, ...)
x |
A fisher_mle object |
... |
Additional arguments passed to optimization |
data |
Data frame used for likelihood computation |
model |
The likelihood model used for fitting |
k |
Likelihood ratio cutoff (default 8, giving 1/8 interval) |
param |
Index or name of parameter for profile interval (NULL for all) |
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).
Matrix with lower and upper bounds for each parameter
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.