Matlab 中的决策树
我在Matlab中看到了帮助,但他们提供了一个示例,但没有解释如何使用“classregtree”函数中的参数。任何解释“classregtree”及其参数的使用的帮助将不胜感激。
I saw the help in Matlab, but they have provided an example without explaining how to use the parameters in the 'classregtree' function. Any help to explain the use of 'classregtree' with its parameters will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
函数 classregtree 的文档页面是不言自明的......
让我们回顾一下分类树模型的一些最常见的参数:
一个完整的示例来说明该过程:
更新:
上述
classregtree
class 已过时,并由ClassificationTree
< R2011a 中的 /a> 和RegressionTree
类(请参阅fitctree
和fitrtree
函数,R2014a 中的新增功能)。这是使用新函数/类的更新示例:
The documentation page of the function classregtree is self-explanatory...
Lets go over some of the most common parameters of the classification tree model:
A complete example to illustrate the process:
Update:
The above
classregtree
class was made obsolete, and is superseded byClassificationTree
andRegressionTree
classes in R2011a (see thefitctree
andfitrtree
functions, new in R2014a).Here is the updated example, using the new functions/classes: