在R中绘制C5.0树

前端之家收集整理的这篇文章主要介绍了在R中绘制C5.0树前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在R中绘制一个C5.0对象树,但它给出了以下错误,我似乎无法找到如何解决它.
plot(model)

Error in partysplit(varid = as.integer(i),index = index,info = k,prob = NULL)   : 
 minimum of ‘index’ is not equal to 1
In addition: Warning message:
In min(index,na.rm = TRUE) :
 no non-missing arguments to min; returning Inf

解决方法

试试这个
library(rattle)
fancyRpartPlot(model)
原文链接:https://www.f2er.com/c/118453.html

猜你在找的C&C++相关文章