visualize a tree and splitting point in TreeBagger

Hi, Suppose I fit a TreeBagger with 2 column predictor variables X:
B = TreeBagger(1,X,y, 'Method','classification','NVarToSample',1,'oobpred','on')
I want to visualize any tree that I choose, and the splitting values. How can I do that? Thanks!

 採用された回答

Ilya
Ilya 2013 年 10 月 13 日

0 投票

doc TreeBagger and take a look at the Trees property. For example, to see the first tree
view(B.Trees{1})

3 件のコメント

Henry
Henry 2013 年 10 月 13 日
The suggestions works! thanks! But the documentation on Trees is very scarce. What you said isn't there... Thanks again
Ilya
Ilya 2013 年 10 月 14 日
What I said about the view method is not in the TreeBagger doc. Typing
B.Trees{1}
returns an object for a single tree. If you use R2013a or later, the class is included in the display of this object. (If you use an earlier release, you can infer the class of this object from the variable editor, for instance.) You can then go to the doc for that class.
Henry
Henry 2013 年 10 月 14 日
Alright, thanks very much!

サインインしてコメントする。

その他の回答 (1 件)

Mohammad Abdulla
Mohammad Abdulla 2018 年 7 月 5 日

0 投票

Hi, How can I increase the number of iterations for fitting a decision tree or random forest? Also, how can I change the opimizer from Bayesian to other such as grid search

カテゴリ

質問済み:

2013 年 10 月 11 日

回答済み:

2018 年 7 月 5 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by