This function estimates a production frontier satisfying some classical production theory axioms, such as monotonicity and concavity, which is based upon the adaptation of the machine learning technique known as LS-boosting using adapted Multivariate Adaptive Regression Splines (MARS) as base learners.
This function saves information about the LS-Boosted Multivariate Adaptive Frontier Splines model.
MARSBoost(data, x, y, num.iterations, num.terms, learning.rate)MARSBoost_object(
data,
x,
y,
num.iterations,
learning.rate,
num.terms,
MARS.models,
f0,
prediction,
prediction.smooth
)
A MARSBoost object.
A MARSBoost object.
data.frame or matrix containing the variables
in the model.
Column input indexes in data.
Column output indexes in data.
Maximum number of iterations the algorithm will perform
Maximum number of reflected pairs created by the forward algorithm of MARS.
Learning rate that control overfitting of the algorithm. Value must be in (0,1]
List of the adapted forward MARS models created in each iterations
Initial predictions of the model (they correspond to maximum value of each output variable)
Final predictions of the original data without applying the smoothing procedure
Final predictions of the original data after applying the smoothing procedure