predict.subsemble {subsemble} | R Documentation |
Predict method for a 'subsemble' object.
Description
Obtains predictions on a new data set from a subsemble
fit. May require the original data, X
, if one of the learner algorithms uses the original data in its predict method.
Usage
## S3 method for class 'subsemble'
predict(object, newx, x = NULL, y = NULL, ...)
Arguments
object |
An object of class 'subsemble', which is returned from the |
newx |
The predictor variables for a new (testing) data set. The structure should match |
x |
Original data set used to fit |
y |
Original outcome used to fit |
... |
Additional arguments passed to the |
Details
If newx
is omitted, the predicted values from object
are returned. The learner
algorithm needs to have a corresponding prediction function with “predict” prefixed onto the algorithm name (e.g. predict.SL.glm
for SL.glm
). This should be taken care of by the SuperLearner
package.
Value
pred |
Predicted values from subsemble fit. |
subpred |
A data.frame with the predicted values from each sublearner algorithm for the rows in |
Author(s)
Erin LeDell oss@ledell.org
See Also
Examples
# See subsemble() function documentation for an example.