predict_RF {statTarget} | R Documentation |
Prediction of test data using random forest in statTarget.
predict_RF(object, newdata, type='response',...)
object |
An object created by the function statTarget_rForest. |
newdata |
A data frame or matrix containing new data. (Note: If not given, the out-of-bag prediction in object is returned. see randomForest package. |
type |
One of response, prob. or votes, indicating the type of output: predicted values, matrix of class probabilities, or matrix of vote counts. class is allowed, but automatically converted to 'response', for backward compatibility. |
... |
A generic predict function from randomForest package. |
A class of predicted values is returned. Object type is classification, for detail see randomForest package.
Hemi Luan, hemi.luan@gmail.com
randomForest
datpath <- system.file('extdata',package = 'statTarget') statFile <- paste(datpath,'data_example.csv', sep='/') getFile <- read.csv(statFile,header=TRUE) rFtest <- rForest(getFile,ntree = 10,times = 5) predictOutput <- predict_RF(rFtest, getFile[1:19,3:8])