efficiencyEAT {eat} | R Documentation |
Efficiency Scores computed through an Efficiency Analysis Trees model.
Description
This function computes the efficiency scores for each DMU through an Efficiency Analysis Trees model.
Usage
efficiencyEAT(
data,
x,
y,
object,
scores_model,
digits = 3,
FDH = TRUE,
print.table = FALSE,
na.rm = TRUE
)
Arguments
data |
|
x |
Column input indexes in |
y |
Column output indexes in |
object |
An |
scores_model |
Mathematical programming model to calculate scores.
|
digits |
Decimal units for scores. |
FDH |
|
print.table |
|
na.rm |
|
Value
A data.frame
with the efficiency scores computed through an Efficiency Analysis Trees model. Optionally, a summary descriptive table of the efficiency scores can be displayed.
Examples
simulated <- X2Y2.sim(N = 50, border = 0.2)
EAT_model <- EAT(data = simulated, x = c(1,2), y = c(3, 4))
efficiencyEAT(data = simulated, x = c(1, 2), y = c(3, 4), object = EAT_model,
scores_model = "BCC.OUT", digits = 2, FDH = TRUE, print.table = TRUE,
na.rm = TRUE)