Function estimates coefficients based on LASSO regularization.
lassoEstimation(
x,
response,
control = list(alpha = 1, s = "lambda.min", family = "gaussian", grouped = FALSE),
...
)Result is a list with coefficients, coefficient names and the model intercept.
An object of type DocumentTermMatrix.
Response variable including the given gold standard.
(optional) A list of parameters defining the LASSO model as follows:
"s"Value of the parameter lambda at which the LASSO is evaluated. Default
is s="lambda.1se" which takes the calculated minimum value for \(\lambda\)
and then subtracts one standard error in order to avoid overfitting. This often
results in a better performance than using the minimum value itself given by
lambda="lambda.min".
"family"Distribution for response variable. Default is family="gaussian".
For non-negative counts, use family="poisson". For binary variables
family="binomial". See glmnet for further details.
"grouped" Determines whether grouped LASSO is used (with default FALSE).
Additional parameters passed to function for glmnet.