An object of class list containing additional arguments
to be sent to solver.method. Arguments must be provided as a list, where
the name of each element matches a formal argument of solver.method. For
example, if a logistic regression using glm is desired,
$$solver.method = ``glm"$$
$$solver.args = list(``family"=binomial)$$
A solver.method can takes formal arguments 'formula' and 'data' as inputs,
such as lm and glm. Some R methods do not use formal names 'formula' and
'data'; a user can indicate if a different naming convention is used for
these two input arguments. For example, if a method expects the formula
object to be passed through input variable x
,
solver.args
<- list("x"="formula")
A solver.method can also take formal arguments 'x' and 'y' as inputs,
such as glmnet. Some R methods do not use formal names 'x' and 'y' to
indicate the covariate and response; a user can indicate if a different
naming convention is used for these two input arguments. For example, if a
method expects the covariate matrix to be passed through input variable
X
, solver.args
<- list("X"="x")