gamboostpredict
statistics: Y = gamboostpredict (BinEdges, ShapeValues, X, Intercept)
statistics: Y = gamboostpredict (…, Link)
statistics: Y = gamboostpredict (…, Link, PairBinEdges, PairValues, Pairs)
Predict from a generalized additive model of boosted trees.
gamboosttrain returns them in the fields of the same names. Each
shape function is a step function over its predictor’s bins, so a term is
evaluated by a lookup.
NaN, which is what a tree does with a value it cannot place. A
value outside the range the term was fitted over falls in the nearest bin,
so a shape function is constant beyond its data rather than extrapolated.
0 returns it as it stands and 1 takes it as a
log-odds, returning the matrix of class probabilities whose
second column is the logistic function of it. The default is 0.
gamboostinter returns the first two and as it
was given the third. Each pair contributes the value of the cell its two
predictors fall in, and a pair with either predictor missing contributes
nothing. All three must be given together or none of them.
See also: gamboosttrain, gampredict, ClassificationGAM, RegressionGAM
Source Code: gamboostpredict