Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is a good Python library for decision trees? [closed]

Unless I'm missing something, the usual suspects don't have this....

like image 406
Ash Avatar asked Jun 27 '10 16:06

Ash


2 Answers

There is a DecisionTreeLearner class as part of the Python library for Russell & Norvig's "Artificial Intelligence: A Modern Approach" textbook.

like image 186
Brandon Avatar answered Oct 25 '22 16:10

Brandon


There is also Scikit Learn: http://scikit-learn.org/stable/modules/tree.html#classification Haven't tried it though (but I'm about to).

like image 35
EDWH Avatar answered Oct 25 '22 14:10

EDWH