Learn R Programming

deaR (version 1.4.1)

Power_plants: Data: Tone (2002).

Description

This dataset consists of six power plants with 4 inputs (X) and 2 outputs (Y).

Usage

data("Power_plants")

Arguments

Format

Data frame with 15 rows and 7 columns. Definition of inputs (X) and outputs (Y):

x1

Manpower requiered

x2

Construction costs in millions of dollars

x3

Annual maintenance costs in millions of dollars

x4

Number of villages to be evacuated

y1

Power generated in megawatts

y2

Safety level

Author

Vicente Coll-Serrano (vicente.coll@uv.es). Quantitative Methods for Measuring Culture (MC2). Applied Economics.

Vicente Bolos (vicente.bolos@uv.es). Department of Business Mathematics

Rafael Benitez (rafael.suarez@uv.es). Department of Business Mathematics

University of Valencia (Spain)

See Also

make_deadata, model_supereff, model_sbmsupereff

Examples

Run this code
# Example 1. Radial super-efficiency model.
# Replication of results in Tone (2002)
data("Power_plants")
data_example <- make_deadata(Power_plants,
                             ni = 4,
                             no = 2)
result <- model_supereff(data_example,
                         orientation = "io",
                         rts = "crs")
eff <- efficiencies(result)
eff

# Example 2. SBM super-efficiency model.
data("Power_plants")
data_example <- make_deadata(Power_plants,
                             ni = 4,
                             no = 2)
result2 <- model_sbmsupereff(data_example,
                             orientation = "io",
                             rts = "crs")
efficiencies(result2)
slacks(result2)$input
references(result2)

Run the code above in your browser using DataLab