在Windows上,即使在pip install
或conda
之后,graphviz也不起作用。它说
InvocationException:找不到GraphViz的可执行文件。
我正在尝试使用决策树建模。
dot_data = StringIO()
export_graphviz(dt, out_file=dot_data,
filled=True, rounded=True,
feature_names=X.columns.values,
class_names = ['human','bot'],
special_characters=True)
graph = pydotplus.graph_from_dot_data(dot_data.getvalue())
Image(graph.create_png())`