detect_separation_control {detectseparation} | R Documentation |
Auxiliary function for the glm
interface when
method
is detect_separation
.
Description
Typically only used internally by detect_separation
but may be used to construct a control
argument.
Usage
detect_separation_control(
implementation = c("ROI", "lpSolveAPI"),
solver = "lpsolve",
linear_program = c("primal", "dual"),
purpose = c("find", "test"),
tolerance = 1e-04,
solver_control = list()
)
detectSeparationControl(
implementation = c("ROI", "lpSolveAPI"),
solver = "lpsolve",
linear_program = c("primal", "dual"),
purpose = c("find", "test"),
tolerance = 1e-04,
solver_control = list()
)
Arguments
implementation |
should the implementation using |
solver |
should the linear program be solved using the
|
linear_program |
should |
purpose |
should |
tolerance |
maximum absolute variable value from the linear
program, before separation is declared. Default is
|
solver_control |
a list with additional control parameters for
the |
Value
A list with the supplied linear_program
, solver
,
solver_control
, purpose
, tolerance
,
implementation
, and the matched separator
function
(according to the value of implementation
).