Description Usage Arguments Value Author(s) See Also Examples
Prediction of test data using random forest in statTarget.
1 | 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
1 2 3 4 5 | 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])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.