coef.AccurateGLM {aglm} | R Documentation |
Get coefficients
Description
Get coefficients
Usage
## S3 method for class 'AccurateGLM'
coef(object, index = NULL, name = NULL, s = NULL, exact = FALSE, ...)
Arguments
object |
A model object obtained from |
index |
An integer value representing the index of variable whose coefficients are required. |
name |
A string representing the name of variable whose coefficients are required.
Note that if both |
s |
Same as in coef.glmnet. |
exact |
Same as in coef.glmnet. |
... |
Other arguments are passed directly to |
Value
If index
or name
is given, the function returns a list with the one or combination
of the following fields, consisting of coefficients related to the specified variable.
-
coef.linear
: A coefficient of the linear term. (If any) -
coef.OD
: Coefficients of O-dummies. (If any) -
coef.UD
: Coefficients of U-dummies. (If any) -
coef.LV
: Coefficients of L-variables. (If any)
If both index
and name
are not given, the function returns entire coefficients
corresponding to the internal designed matrix.
Author(s)
Kenji Kondo