# Example 1. Replication of results in Tone (2001, p.505)
data("Tone2001")
data_example <- make_deadata(Tone2001,
ni = 2,
no = 2)
result_SBM <- model_sbmeff(data_example,
orientation = "no",
rts = "crs")
result_CCR <- model_basic(data_example,
orientation = "io",
rts = "crs")
efficiencies(result_SBM)
efficiencies(result_CCR)
slacks(result_SBM)
slacks(result_CCR)
# Example 2. Replication of results in Tone (2003), pp 10-11 case 1:1.
data("Tone2003")
data_example <- make_deadata(Tone2003,
ni = 1,
no = 2,
ud_outputs = 2)
result <- model_sbmeff(data_example,
rts = "vrs")
efficiencies(result)
targets(result)
# Example 3. Replication of results in Aparicio (2007).
data("Airlines")
datadea <- make_deadata(Airlines,
inputs = 4:7,
outputs = 2:3)
result <- model_sbmeff(datadea = datadea, kaizen = TRUE)
efficiencies(result)
targets(result)
Run the code above in your browser using DataLab