xy.coords(x,y,xlabel,ylabel,log)中的错误:'x'是一个列表,但在Rstudio中没有用于ID3算法的组件'x'和'y'

时间:2018-03-12 15:55:01

标签: r plot decision-tree id3

code_img error_img 我收到了这个错误:

xy.coords(x,y,xlabel,ylabel,log)中的错误:   'x'是一个列表,但没有组件'x'和'y'

代码:

library(RWeka)
WPM("refresh-cache") 
WPM("list-packages", "available")
WPM("install-package", "simpleEducationalLearningSchemes")
WPM("load-package", "simpleEducationalLearningSchemes")
ID3 <- make_Weka_classifier("weka/classifiers/trees/Id3")
trial<-ID3(Intersection.~.,data = dataTrain)
trial
plot(trial) //error while running these line only

xy.coords(x,y,xlabel,ylabel,log)中的错误:   'x'是一个列表,但没有组件'x'和'y' error screenshot

实际上,我想做的只是使用ID3算法绘制决策树,我知道它是最老的算法,但我必须使用ID3,C4.5,随机森林制作比较表,CART和C5.0,我甚至无法在RStudio中找到适当的ID3代码,所以如果有人知道在RStudio中实现ID3算法的代码,请告诉我。

0 个答案:

没有答案