I am doing regression task - do I need to normalize (or scale) data for randomForest (R package)? And is it neccessary to scale also target values? And if - I want to use scale function from caret package, but I did not find how to get data back (descale, denormalize). Do not you know about some other function (in any package) which is helpfull with normalization/denormalization? Thanks, Milan
|
No, scaling is not necessary for random forests.
|
|||||
|
|
I do not see any suggestions in either the help page or the Vignette that suggests scaling is necessary for a regression variable in Copy of my comment: The Your conception of why "normalization" needs to be done may require critical examination. The test of non-normality is only needed after the regressions are done and may not be needed at all if there are no assumptions of normality in the goodness of fit methodology. So: Why are you asking? Searching in SO and Stats.Exchange might prove useful: citation #1 ; citation #2 ; citation #3 The |
|||||||||
|
|
If you are going to add interactions to dataset - that is, new variable being some function of other variables (usually simple multiplication), and you dont feel what that new variable stands for (cant interprete it), then you should calculate this variable using scaled variables. |
|||
|
scalefunction does not belong tocaret. It is part of the "base" R package. There is anunscalefunction that will reverse the transformation. – DWin Jan 22 '12 at 14:11