roc.hdf | R Documentation |
Employs dm.hdf
over time to calculate RoCs.
roc.hdf(xdata, ydata, date, t,
rts="crs", wd=NULL, sg="ssm", ftype="d", cv="convex")
xdata |
Input(s) vector (n by m) |
ydata |
Output(s) vector (n by s) |
date |
Production date (n by 1) |
t |
A vantage point from which the RoC is captured |
rts |
Returns to scale assumption |
wd |
Weak disposability vector indicating (an) undesirable output(s) (1 by s) |
sg |
Employs second-stage optimization |
ftype |
Frontier type |
cv |
Convexity assumption |
$eff_r |
Efficiency at release (i.e., at each production date) |
$eff_t |
Efficiency at |
$lambda_t |
Intensity vector at |
$eft_date |
Effective date |
$roc_past |
RoC observed from the obsolete DMUs in the past |
$roc_avg |
Average RoC |
$roc_local |
Local RoC |
Dong-Joon Lim, PhD
D.-J. Lim, Internal combustion engine race: naturally aspirated vs turbo/super-charged, working paper (2015).
dm.hdf
Distance measure using HDF
roc.hdf
RoC calculation using HDF
map.soa.hdf
SOA mapping using HDF
target.arrival.hdf
Arrival target setting using HDF
# Load engine dataset
df <- dataset.engine.2015
# Subset for 8 cylinder TC-P engines
et <- subset(df, df[, 3] == 8 & df[, 8] == "TC-P")
# Parameters
x <- subset(et, select = 4)
y <- subset(et, select = 5 : 7)
d <- subset(et, select = 2)
w <- matrix(c(1, 0, 0), ncol = 3)
# Calc local Roc
roc.hdf(x, y, d, 2015, "vrs", w, "min")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.