coef | R Documentation |
This function works like coef
from the stats
package. It extracts the coefficients from the objects.
coef(object, ...)
## S4 method for signature 'pim'
coef(object, ...)
## S4 method for signature 'pim.summary'
coef(object, ...)
object |
a |
... |
currently ignored. |
a named vector with the coefficients.
data("FEVData")
Model <- pim(FEV~ Age + Smoke*Sex , data=FEVData)
coef(Model)
summ <- summary(Model)
coef(summ)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.