This function saves information about the adapted Multivariate Adaptive Frontier Splines model.
MARSAdapted_object(
data,
x,
y,
rownames,
nterms,
Kp,
d,
err_red,
minspan,
endspan,
na.rm,
MARS.Forward,
MARS.Forward.Smooth
)A MARSAdapted object.
data.frame or matrix containing the variables in
the model.
Column input indexes in data.
Column output indexes in data.
string. Data rownames.
Maximum number of terms created by the forward algorithm .
Maximum degree of interaction allowed. Default is 1.
Generalized Cross Validation (GCV) penalty per knot. Default is
2. If set to -1, GCV = RSS / n.
Minimum reduced error rate for the addition of two new basis
functions. Default is 0.01.
Minimum number of observations between knots. When
minspan = 0 (default), it is calculated as in Friedman's MARS paper
section 3.8 with alpha = 0.05.
Minimum number of observations before the first and after the
final knot. When endspan = 0 (default), it is calculated as in
Friedman's MARS paper section 3.8 with alpha = 0.05.
logical. If TRUE, NA rows are omitted.
The Multivariate Adaptive Frontier Splines model after applying the forward algorithm without the smoothing procedures
The Multivariate Adaptive Frontier Splines model after applying the forward algorithm after applying the smoothing procedure