Description Usage Arguments Details Value Examples
This function performs the likelihood ratio test to compare two nested binomial or multinomial additive hazard models. It can be used for model selection.
1 | LRTest(model1, model2)
|
model1, model2 |
objects of class "binaddhazmod" or "multaddhazmod" to be compared. See example. |
The likelihood ratio test is defined as -2*log(likelihood model 1/likelihood model 2).The resulting test statistic is assumed to follow a chi-squared distribution, with degrees of freedom (df) equal to the difference of the df between the models. If the test is statistically significant, the model with more variables fits the data significantly better than the model with less variables.
A data frame with columns:
Res.df |
degrees of freedom for each model. |
Res.dev |
2*log-likelihood of each model. |
df |
difference in the degrees of freedom between models 1 and 2. |
Deviance |
difference between the 2*log-likelihood of models 1 and 2, representing the value of the likelihood ratio test statistic. |
Pr(>Chi) |
p-value, based on the chi-squared distribution. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | data(disabData)
## Comparing two binomial models
fit1 <- BinAddHaz(dis.bin ~ diab + arth + stro , data = disabData, weights = wgt,
attrib = FALSE)
diseases <- as.matrix(disabData[,c("diab", "arth", "stro")])
fit2 <- BinAddHaz(dis.bin ~ factor(age) -1 + diseases:factor(age), data = disabData,
weights = wgt, attrib = FALSE)
LRTest(fit2, fit1)
## Comparing two multinomial models
## Not run:
fit3 <- MultAddHaz(dis.mult ~ diab + arth + stro , data = disabData, weights = wgt,
attrib = FALSE)
fit4 <- MultAddHaz(dis.mult ~ factor(age) -1 + diseases: factor(age), data = disabData,
weights = wgt, attrib = FALSE)
LRTest(fit4, fit3)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.