我使用graphviz在Jupyter Notebook中可视化我的决策树。现在我的问题是如何在Jupyter Notebook中显示完整的决策树图?或者如何从Jupyter Notebook保存决策树的图片?
现在我只能向下滚动查看整个树。我想在一个窗口中看到整个树。
谢谢!
答案 0 :(得分:0)
这给出了PDF:
from graphviz import Digraph
g = Digraph('G', filename='hello.gv')
g.edge('Hello', 'World')
g.view()
使用Jupyter时,您可以执行以下操作:
--> file --> export notebook as --> export notebook to markdown
。您将获得一个包含png的zip文件。