0
我想顯示的樹輸出,但是當我運行下面的腳本,我收到一個錯誤,如:的GraphViz的可執行文件未找到:蟒蛇-3
InvocationException:GraphViz的的可執行文件未找到
我在這裏搜索了類似的話題,但大多數都與Mac相關。我使用Windows 10 64位操作系統,並使用Anaconda-3 64位。我很想聽聽你的建議。
#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)
import pydotplus
graph=pydotplus.graph_from_dot_data(out.getvalue())
Image(graph.create_png())
編輯:我已經安裝了再次的graphviz和pydotplus模塊,但現在還在工作。