
Computes the polynomial-type estimators of frontiers and boundaries proposed by Hall, Park and Stern (1998).
poly_est(xtab, ytab, x, deg, control = list("tm_limit" = 700))
Returns a numeric vector with the same length as x
. Returns a vector of NA if no solution has been found by the solver (GLPK).
a numeric vector containing the observed inputs
a numeric vector of the same length as xtab
containing the observed outputs
a numeric vector of evaluation points in which the estimator is to be computed.
an integer (polynomial degree).
a list of parameters to the GLPK solver. See *Details* of help(Rglpk_solve_LP).
Hohsuk Noh.
The data edge is modeled by a single polynomial
Hall, P., Park, B.U. and Stern, S.E. (1998). On polynomial estimators of frontiers and boundaries. Journal of Multivariate Analysis, 66, 71-98.
loc_est
data("air")
x.air <- seq(min(air$xtab), max(air$xtab),
length.out = 101)
# Optimal polynomial degrees via the AIC criterion
(p.aic.air <- poly_degree(air$xtab, air$ytab,
type = "AIC"))
# Polynomial boundaries estimate
y.poly.air<-poly_est(air$xtab, air$ytab, x.air,
deg = p.aic.air)
# Representation
plot(x.air, y.poly.air, lty = 1, lwd = 4,
col = "magenta", type = "l")
points(ytab~xtab, data = air)
legend("topleft",legend = paste("degree =", p.aic.air),
col = "magenta", lwd = 4, lty = 1)
Run the code above in your browser using DataLab