predict.RDTRegressor.RdSimilar to other predict methods, this function predicts fitted values from a fitted "RDTRegressor" object.
# S3 method for RDTRegressor predict( model, data, key, features = NULL, block.size = NULL, missing.replacement = NULL )
| model |
|
|---|---|
| data |
|
| key |
|
| features |
|
| block.size |
|
| missing.replacement |
Defaults to "feature.marginalized". |
S3 methods
DataFrame of predicted values, structured as follows.
ID, with same name and type as data's ID column.
SCORE, type NVARCHAR, predicted values.
CONFIDENCE, type DOUBLE. Representing the confidence of a class. All 0s for regression.
Call the function with a "RDTRegressor" object rfr:
> predict(rfr, data, key = "ID")