View source: R/roi_solve_adea.R
roi_solve_adea | R Documentation |
For the given input and output build the adea problem and return it.
roi_solve_adea(
input,
output,
eff = NULL,
orientation = c("input", "output"),
load.orientation = c("inoutput", "input", "output"),
solver = "auto",
lp = NULL
)
input |
A matrix or a data frame containing the inputs of the units to be evaluated, with one row for each DMU and one column for each input. |
output |
A matrix or a data frame containing the outputs of the units to be evaluated, with one row for each DMU and one column for each output. |
orientation |
Use "input" for input orientation or "output" for output orientation in DEA model. The default is "input". |
load.orientation |
This parameter allows the selection of variables to be included in load analysis. The default is "inoutput" which means that all input and output variables will be included. Use "input" or "output" to include only input or output variables in load analysis. |
solver |
Any of the available solver that will be used by ROI to solve the optimization problem. Use <code>ROI_installed_solvers()</code> to list them. |
lp |
Can be a DEA lp or ADEA lp |
Note: As this function is mainly for internal use, to avoid unnecessary overload, it does not do an extensive check of the input parameters. Use the higher level adea function instead.
list(lp, status, solver, selected, ux, vy, eff)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.