JuliaAI / DecisionTree.jl

Julia implementation of Decision Tree (CART) and Random Forest algorithms
Other
356 stars 102 forks source link

Adapt to new `AbstractNode` in `AbstractTrees` #195

Closed roland-KA closed 1 year ago

roland-KA commented 1 year ago

As there is now an abstract type AbstractNode in AbstractTrees.jl the "wrapped" decision tree (or rather its nodes) is now defined as a subtype of this AbstractNode so that dispatch on this type is possible when the tree gets plotted via a plot recipe.