Learn R Programming

deaR (version 1.2.1)

Fortune500: Data: Zhu (2014).

Description

This dataset consists of 15 firms from the Fortune 500 list 1995 (https://fortune.com/fortune500/) with 3 inputs and 2 outputs.

Usage

data("Fortune500")

Arguments

Format

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

x1 = Assets

Assets (millions of dollars)

x2 = Equity

Equity (millions of dollars)

x3 = Employees

Number of employees

y1 = Revenue

Revenue (millions of dollars)

y2 = Profit

Profit (millions of dollars)

See Also

read_data, model_multiplier

Examples

Run this code
# NOT RUN {
data("Fortune500")
data_Fortune <- read_data(datadea = Fortune500,
                          dmus = 1,
                          inputs = 2:4,
                          outputs = 5:6)
result <- model_multiplier(data_Fortune,
                           epsilon=0.000001,
                           orientation="io",
                           rts="crs")
# results for General Motors and Ford Motor are not shown
# by deaR because the solution is infeasible
efficiencies(result)
multipliers(result)

# }

Run the code above in your browser using DataLab