summary(colond) # colon cancer dataset
# fit model without censoring (i.e., ignoring it)
M <- hlm(log(time) ~ . | rx, data = colond)
M # brief display
summary(M) # full summary
vcov(M) # variance estimate
# fit same model but with censoring
hlm(cbind(log(time), status) ~ . | rx, data = colond)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.