Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I have a data set with 24 predictor variables, all continuous, but with different scales and potential collinearity. I’m trying to decide whether to use randomForest or cforest in party with conditional importance permutation.

I recognize that I should probably use cforest if I want to overcome variable selection bias, but I find the ability to get partial dependence plots and percent variance explained from the randomForest package to be quite appealing.

I was wondering if anyone knew if it were possible to get partial dependence plots and percent variance explained from cforest?

Also, it appears that ctree uses a significance test to select variables; is this the same for cforest? And how might I get these significance values for each variable in cforest?

share|improve this question
ctree makes unbiased variable split selections. However, randomForest calculates two feature importance metrics. The mostly worthless one is based on split selections. The useful one is based on permutation tests. cforest is very slow and not worth it in my experience. I would just use randomForest and focus on permutation based importance measures. – Shea Parkes Sep 14 '12 at 19:52

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.