extract.coef.rxLogit {coefplot}R Documentation

extract.coef.rxLogit

Description

Extract Coefficient Information from rxLogit Models

Usage

## S3 method for class 'rxLogit'
extract.coef(model, ...)

Arguments

model

Model object to extract information from.

...

Further arguments

Details

Gets the coefficient values and standard errors, and variable names from an rxLogit model.

Value

A data.frame containing the coefficient, the standard error and the variable name.

Author(s)

Jared P. Lander

Examples

## Not run: 
library(ggplot2)
data(diamonds)
mod6 <- rxLogit(price > 10000 ~ carat + cut + x, data=diamonds)
extract.coef(mod6)

## End(Not run)


[Package coefplot version 1.2.8 Index]