logit2lrm {base.rms} | R Documentation |
Convert results of logistic regression from glm() in 'stats' package to lrm() in 'rms' package.
logit2lrm(fit)
fit |
logistic regression reults of glm() |
results of lrm()
fit <- glm(vs~mpg+cyl,data=mtcars, family = binomial(link = 'logit'))
logit2lrm(fit)