# NOT RUN {
#Example with a very small sample to decrease computational time.
x1 <-runif(20, 50, 75)
x2 <-runif(20, 30, 75)
x <- cbind(x1, x2)
e <- rnorm(20, 0, 36)
a1 <- 0.4
a2 <- 0.6
y <- a1*x1 + a2*x2 + e
graph2_m_DEA(input = x, output = y, mseries = c(5, 10, 15, 20),
B = 50, RTS = "crs", ORIENTATION = "in")
# }
# NOT RUN {
#An example with a larger sample size.
x1 <-runif(100, 50, 75)
x2 <-runif(100, 30, 75)
x <- cbind(x1, x2)
y <- cbind(x+runif(100, -10, 0), rnorm(100, 15, 4))
graph2_m_DEA(input = x, output = y,
mseries = c(20, 30, 40, 50, 60, 70, 80), B = 50,
RTS = "crs", ORIENTATION = "in")
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab