map.soa.hdf | R Documentation |
Employs dm.hdf
over time to generate a state-of-the-art map.
map.soa.hdf(xdata, ydata, date,
rts="crs", wd=NULL, sg="ssm", cv="convex", mk="dmu")
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 |
wd |
Weak disposability vector indicating (an) undesirable output(s) (1 by s) |
sg |
Employs second-stage optimization |
cv |
Convexity assumption |
mk |
Marker on the map |
Dong-Joon Lim, PhD
D.-J. Lim, Internal combustion engine race: naturally aspirated vs turbo/super-charged, working paper (2015).
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
# Load engine dataset
df <- dataset.engine.2015
# Subset for SC/TC 8 cylinder engines
stc.8 <- subset(df, grepl("^.C..", df[, 8]) & df[, 3] == 8)
# Parameters
x <- subset(stc.8, select = 4)
y <- subset(stc.8, select = 5:7)
d <- subset(stc.8, select = 2)
# Generate an SOA map
map.soa.hdf(x, y, d, "vrs")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.