extract.coef.rxLogit.Rd
Extract Coefficient Information from rxLogit Models
# S3 method for rxLogit extract.coef(model, ...)
model | Model object to extract information from. |
---|---|
... | Further arguments |
A data.frame
containing the coefficient, the standard error and the variable name.
Gets the coefficient values and standard errors, and variable names from an rxLogit model.
if (FALSE) { require(ggplot2) data(diamonds) mod6 <- rxLogit(price > 10000 ~ carat + cut + x, data=diamonds) extract.coef(mod6) }