使用scikit-learn的方便export_graphviz
函數導出.dot文件後。Graphviz.Source不在Jupyter筆記本中顯示
我試圖渲染使用的Graphviz點文件轉換成細胞在我Jupyter筆記本:
import graphviz
from IPython.display import display
with open("tree_1.dot") as f:
dot_graph = f.read()
display(graphviz.Source(dot_graph))
然而出[]是一個空的單元格。
我使用的graphviz 0.5
(PIP然後康達安裝),IPython的5.1
和Python 3.5
的點文件看起來是正確這裏是第一個字符:
digraph Tree {\nnode [shape=box, style="filled", color=
IPython的顯示器似乎對其他工作對象包括Matplotlib圖和Pandas數據框。
我應該注意Graphviz'site上的示例也不起作用。
這是回答[她e](http://stackoverflow.com/questions/12323252/brew-doctor-dyld-library-not-loaded-error-no-available-formula-for-zlib/17761170#17761170) –