我正在使用treebagger进行分类并绘制树图。但是,如何从图中的每个节点提取/保存值(766,4.35,2.11)?附件是情节,下面是我的代码:
Mdl= fitctree(Xtrain,Ytrain,'MaxNumSplits',4,'CrossVal','on');
view(Mdl.Trained{1},'Mode','graph')
答案 0 :(得分:1)
您要查找的属性是CutPoint
。
>> Mdl.Trained{1}.CutPoint
ans =
766.0000
4.3500
2.1180