从树形图中提取决策拆分值

时间:2018-12-02 15:49:41

标签: matlab treeview matlab-figure random-forest

我正在使用treebagger进行分类并绘制树图。但是,如何从图中的每个节点提取/保存值(766,4.35,2.11)?附件是情节,下面是我的代码:

Mdl= fitctree(Xtrain,Ytrain,'MaxNumSplits',4,'CrossVal','on');
        view(Mdl.Trained{1},'Mode','graph')

enter image description here

1 个答案:

答案 0 :(得分:1)

您要查找的属性是CutPoint

>> Mdl.Trained{1}.CutPoint
ans =
  766.0000
    4.3500
    2.1180