I\'m looking to visualize a regression tree built using any of the ensemble methods in scikit learn (gradientboosting regressor, random forest regressor,bag
After much searching, I found software offered by Turi that models a regression tree, not to be confused with a decision tree. Hope this helps
For what its worth, a regression tree looks like this:
While a decision/classifier tree looks like this:
And tho they look the same, the attribute needed to create this is tree_
which is only available to classifiers, not regressors.