我无法在这部分代码之后显示决策树。它运行良好,我没有收到任何错误,但不知怎的,我看不到输出。任何帮助表示赞赏!
#Displaying the decision tree
from sklearn import tree
#from StringIO import StringIO
from io import StringIO
#from StringIO import StringIO
from IPython.display import Image
out=StringIO()
tree.export_graphviz(classifier, out_file=out)
编辑:我添加了这部分,然后我收到以下错误,因为没有名为'pydotplus'的模块。我顺便使用Anaconda3。这是我后来添加的代码:
import pydotplus
graph=pydotplus.graph_from_dot_data(out.getvalue())
Image(graph.create_png())