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,
  load.orientation,
  solve = FALSE,
  lp = NULL
)

lp_solve_cadea(
  input,
  output,
  eff = NULL,
  orientation,
  load.orientation,
  load.min,
  load.max,
  max.iterations = 25,
  solve = TRUE,
  lp = NULL
)

Arguments

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.

eff

The efficiency scores from dea analysis.

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.

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 Nov. 24, 2023, 5:10 p.m.