matchCoefs {coefplot} | R Documentation |
matchCoefs
Description
Match coefficients to predictors
Usage
matchCoefs(model, ...)
Arguments
model |
Fitted model |
... |
Further arguments |
Details
Matches coefficients to predictors using information from model matrices
Value
a data.frame matching predictors to coefficients
Author(s)
Jared P. Lander
Examples
## Not run:
require(reshape2)
require(plyr)
data("tips", package="reshape2")
mod1 <- lm(tip ~ total_bill * sex + day, tips)
mod2 <- lm(tip ~ total_bill * sex + day - 1, tips)
mod3 <- glm(tip ~ total_bill * sex + day, tips, family=gaussian(link="identity"))
mod4 <- lm(tip ~ (total_bill + sex + day)^3, tips)
mod5 <- lm(tip ~ total_bill * sex + day + I(total_bill^2), tips)
coefplot:::matchCoefs(mod1)
coefplot:::matchCoefs(mod2)
coefplot:::matchCoefs(mod3)
coefplot:::matchCoefs(mod4)
coefplot:::matchCoefs(mod5)
## End(Not run)
[Package coefplot version 1.2.8 Index]