Do I need to normalize (or scale) data for randomForest (R package)?

后端 未结 6 1082
囚心锁ツ
囚心锁ツ 2020-12-07 08:46

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 sc

6条回答
  •  旧巷少年郎
    2020-12-07 09:37

    Random Forest uses information gain / gini coefficient inherently which will not be affected by scaling unlike many other machine learning models which will (such as k-means clustering, PCA etc). However, it might 'arguably' fasten the convergence as hinted in other answers

提交回复
热议问题