| map.soa.dea {DJL} | R Documentation |
SOA mapping using DEA
Description
Employs dm.dea over time to generate a state-of-the-art map.
Usage
map.soa.dea(xdata, ydata, date, rts="crs", orientation,
sg="ssm", ncv=NULL, env=NULL, cv="convex", mk="dmu")
Arguments
xdata |
Input(s) vector (n by m) |
ydata |
Output(s) vector (n by s) |
date |
Production date (n by 1) |
rts |
Returns to scale assumption |
orientation |
Orientation of the measurement |
sg |
Employs second-stage optimization |
ncv |
Non-controllable variable index(binary) for internal NDF (1 by (m+s)) |
env |
Environment index for external NDF (n by 1) |
cv |
Convexity assumption |
mk |
Marker on the map |
Author(s)
Dong-Joon Lim, PhD
See Also
map.soa.ddf SOA mapping using DDF
map.soa.dea SOA mapping using DEA
map.soa.hdf SOA mapping using HDF
map.soa.sbm SOA mapping using SBM
map.soa.sf SOA mapping using SF
Examples
# Load engine dataset
df <- dataset.engine.2015
# Subset for forced induction systems
fis <- subset(df, grepl("^.C..", df[, 8]))
# Parameters
x <- subset(fis, select = 4)
y <- subset(fis, select = 6 : 7)
d <- subset(fis, select = 2)
# Generate an SOA map
map.soa.dea(x, y, d, "crs", "o")