Displaying 1 result from an estimated 1 matches for "rf_dtl".
Did you mean:
rf_dt
2012 Sep 27
1
Random Forest - Extract
...below-bind the columns together. I was trying to do something similar for my trainset but without putting it through the predict function. Instead taking directly from the randomForest which I stored in FOREST_model. I really need to get to this information to do some comparison of certain cases.
RF_DTL<-cbind(testset,predict(FOREST_model, testset, type="response"))
2. In the RF model in R the predict function has three possible arguments: "response", "vote" or "prob". I noticed "vote and "prob" are identical for all records in my...