Compute likelihood ratio test to compare two fitted models, one nested within the other.
LR.test(model1, model2)
fitted model
fitted model
Object of class `htest', a list with components
value the test statistic
degrees of freedom of the approximate chi-squared distribution of the test statistic
probability of test statistic assuming chi-square distribution
character string indicating the type of test performed
character string with names of models compared
The fitted models must be of a class for which there is a logLik
method (e.g., `secr' or `lm'). Check with methods("logLik")
.
The test statistic is twice the difference of the maximized likelihoods. It is compared to a chi-square distribution with df equal to the number of extra parameters in the more complex model.
The models must be nested (no check is performed - this is up to the user), but either model1 or model2 may be the more general model.
# NOT RUN {
## two pre-fitted models
AIC (secrdemo.0, secrdemo.b)
LR.test (secrdemo.0, secrdemo.b)
# }
Run the code above in your browser using DataLab