View source: R/efficiencyEAT.R
efficiencyEAT | R Documentation |
This function computes the efficiency scores for each DMU through an Efficiency Analysis Trees model.
efficiencyEAT( data, x, y, object, scores_model, digits = 3, FDH = TRUE, print.table = FALSE, na.rm = TRUE )
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 |
|
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.
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.