JuliaAI / DecisionTree.jl

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

Fixed `pruning_purity_threshold` default in docs #231

Open mossr opened 8 months ago

mossr commented 8 months ago

The docs for DecisionTreeClassifier and DecisionTreeRegressor stated that the pruning_purity_threshold was defaulted to 0.0, but it is actually defaulted to 1.0 (i.e., no pruning).

This change is purely in the docstring of those two structs.