hi I have a random forest called rf.
The documentation , tells me that rf.estimators gives a list of the trees. I am interested in visualizing one, or if I can't at least find out how many nodes the tree has.
my intuition was that the plot_tree function, shown here would be able to be used on the tree, but when i run
rf.estimators_[0].plot_tree()
I get
AttributeError: 'DecisionTreeRegressor' object has no attribute 'plot_tree'
