import pydot,StringIOdot_data = StringIO.StringIO() tree.export_graphviz( clf,out_file = dot_data,feature_names =['age','sex','first_class','second_class','third_class'])graph = pydot.graph_from_dot_data( dot_data.getvalue())graph.write_png('titanic.png') from IPython.core.display import ImageImage( filename ='titanic.png')
我从未这样做过,非常感谢你的帮助.
我尝试了以下但没有显示错误或.png.
from PIL import Imageimage = Image.open("titanic.png")image.show()解决方法 如果你只是想显示它,你可以使用matplotlib:
import matplotlib.pyplot as pltimport matplotlib.image as mpimgimg = mpimg.imread('file-name.png')plt.imshow(img)plt.show()总结
以上是内存溢出为你收集整理的在mint-15 linux上显示python的.png图像全部内容,希望文章能够帮你解决在mint-15 linux上显示python的.png图像所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)