summaryGLM {mets} | R Documentation |
Reporting OR (exp(coef)) from glm with binomial link and glm predictions
Description
Reporting OR from glm with binomial link and glm predictions
Usage
summaryGLM(object, id = NULL, fun = NULL, ...)
Arguments
object |
glm output |
id |
possible id for cluster corrected standard errors |
fun |
possible function for non-standard predictions based on object |
... |
arguments of estimate of lava for example level=0.95 |
Author(s)
Thomas Scheike
Examples
data(sTRACE)
sTRACE$id <- sample(1:100,nrow(sTRACE),replace=TRUE)
model <- glm(I(status==9)~sex+factor(diabetes)+age,data=sTRACE,family=binomial)
summaryGLM(model)
summaryGLM(model,id=sTRACE$id)
nd <- data.frame(sex=c(0,1),age=67,diabetes=1)
predictGLM(model,nd)
[Package mets version 1.3.4 Index]