Does feature order impact Decision tree algorithm in sklearn?

前端 未结 1 1610
情书的邮戳
情书的邮戳 2021-01-27 13:52

I read some material:

  • decision tree document in sklearn

  • A Quora Answer

However I can find if I change feature order(the set o

相关标签:
1条回答
  • 2021-01-27 14:25

    Not really. Sklearn generally uses Cart trees where the best split is decided by picking the feature that minimizes a cost function. So the order of column doesn't really matter.

    0 讨论(0)
提交回复
热议问题