Displaying 1 result from an estimated 1 matches for "nminbucket".
Did you mean:
minbucket
2008 Feb 26
1
predict.rpart question
...estion regarding predict.rpart. I use
rpart to build classification and regression trees and I deal with data with
relatively large number of input variables (predictors). For example, I build an
rpart model like this
rpartModel <- rpart(Y ~ X, method="class",
minsplit =1, minbucket=nMinBucket,cp=nCp);
and get predictors used in building the model like
this
colnamesUsed<-unique(rownames(rpartModel$splits));
When later I apply the rpart model to predict the new
data I strip the input data from unneccessary columns and only use X columns
that exist in colnamesUsed. Unfortunatel...