View source: R/target.arrival.dea.R
target.arrival.dea | R Documentation |
Employs dm.dea
over time to estimate the arrival of known specifications.
target.arrival.dea(xdata, ydata, date, t, rts="crs", orientation,
sg="ssm", ftype="d", ncv=NULL, env=NULL, cv="convex", anc=FALSE)
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 |
orientation |
Orientation of the measurement |
sg |
Employs second-stage optimization |
ftype |
Frontier type |
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 |
anc |
Implements a stepwise RoC computation if |
$eff_t |
Efficiency at |
$lambda_t |
Intensity vector at |
$eft_date |
Effective date |
$roc_avg |
Average RoC |
$roc_anc |
Local RoCs across the periods |
$roc_local |
Local RoC |
$roc_ind |
Individualized RoC |
$arrival_avg |
Estimated arrival using |
$arrival_seg |
Estimated arrival using |
Dong-Joon Lim, PhD
Lim, Dong-Joon, Timothy R. Anderson, and Oliver Lane Inman. "Choosing effective dates from multiple optima in Technology Forecasting using Data Envelopment Analysis (TFDEA)." Technological Forecasting and Social Change 88 (2014): 91~97.
Lim, Dong-Joon, and Timothy R. Anderson. Time series benchmarking analysis for new product scheduling: who are the competitors and how fast are they moving forward?. Advances in DEA Theory and Applications: with Examples in Forecasting Models. (2017): 443-458.
dm.dea
Distance measure using DEA
roc.dea
RoC calculation using DEA
map.soa.dea
SOA mapping using DEA
target.arrival.dea
Arrival target setting using DEA
target.spec.dea
Spec target setting using DEA
# Reproduce Table 4 in Lim, D-J., and Timothy R. Anderson.(2016)
# Load airplane dataset
df <- dataset.airplane.2017
# ready
x <- data.frame(Flew = rep(1, 28))
y <- subset(df, select = 3 : 7)
d <- subset(df, select = 2)
# go
target.arrival.dea(x, y, d, 2007, "vrs", "o", "min", "d")$arrival_seg
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.