lp_solve_adea: Build adea problem

View source: R/lp_solve_adea.R

lp_solve_adeaR Documentation

Build adea problem

Description

For the given input and output build the lp_solve problem and return it.

For the given input and output build the lp_solve problem and return it.

Usage

lp_solve_adea(
  input,
  output,
  eff = NULL,
  orientation = c("input", "output"),
  load.orientation = c("inoutput", "input", "output"),
  solve = FALSE,
  lp = NULL
)

lp_solve_cadea(
  input,
  output,
  eff = NULL,
  orientation = c("input", "output"),
  load.orientation = c("inoutput", "input", "output"),
  load.min,
  load.max,
  max.iterations = 25,
  solve = FALSE,
  lp = NULL
)

Arguments

input

A matrix or a data frame with the inputs of units to be evaluated, one row for each DMU and one column for each input.

output

A matrix or a data frame with the outputs of units to be evaluated, one row for each DMU and one column for each output.

eff

The efficiency scores from dea analysis.

orientation

Use "input" for input orientation or use "output" for output orientation in DEA model.

load.orientation

It allows the selection of variables to be included in load analysis. Its default value is "inoutput" which means that all input and all output variables will be included. Use "input" or "output" to include only input or output variables in load analysis.

solve

If TRUE then solve dea model

lp

The problem returned from lp_solve.dea or NULL

max.iterations

Maximum number of iterations before stop

Value

lp adea problem for the given input, output and scores

lp adea problem for the given input, output and scores


adea documentation built on March 18, 2022, 7:24 p.m.