extract {transreg} | R Documentation |
Internal functions
Description
Internal functions called by
coef.transreg()
, predict.transreg()
and weights.transreg()
,
depending on choice between
standard stacking
and simultaneous stacking.
Usage
.predict.sta(object, newx, ...)
.predict.sim(object, newx, ...)
.coef.sta(object, ...)
.coef.sim(object, ...)
.weights.sta(object, ...)
.weights.sim(object, ...)
.which.stack(object, stack)
Arguments
object |
object of class |
newx |
features:
matrix with |
... |
(not applicable) |
stack |
character "sta" (standard stacking) or "sim" (simultaneous stacking) |
Functions
-
.predict.sta()
: called bypredict.transreg
ifstack="sta"
-
.predict.sim()
: called bypredict.transreg
ifstack="sim"
-
.coef.sta()
: called bycoef.transreg
ifstack="sta"
-
.coef.sim()
: called bycoef.transreg
ifstack="sim"
-
.weights.sta()
: called byweights.transreg
ifstack="sta"
-
.weights.sim()
: called byweights.transreg
ifstack="sim"
-
.which.stack()
: called bycoef.transreg
,predict.transreg
andweights.transreg
See Also
Use coef
,
predict
and weights
.