下面是否有等效项(用于在jupyter中显示决策树)可在命令行中使用?
(假设已经对分类器“模型”进行了训练,在这种情况下使用了虹膜数据集)
from IPython.display import Image
from sklearn.tree import export_graphviz
import pydotplus
dot_data = export_graphviz(model, out_file = None, feature_names =
iris.feature_names, class_names=iris.target_names, filled = True)
graph = pydotplus.graph_from_dot_data(dot_data)
Image(graph.create_png())
我看过许多关于在ipython中可视化但不在终端中可视化的文章。
谢谢!