coef.graper {graper} | R Documentation |
Function to obtain estimated coefficients from a fitted graper model.
## S3 method for class 'graper' coef(object, include_intercept = TRUE, ...)
object |
fitted graper model as obtained from |
include_intercept |
whether to include the estimated intercept value in the output |
... |
other arguments |
1-Column matrix of estimated coefficients.
# create data dat <- makeExampleData() fit <- graper(dat$X, dat$y, dat$annot) coef(fit)