使用Bokeh生成高分辨率数字?

时间:2015-03-12 16:59:39

标签: svg plot bokeh

是否可以使用Bokeh生成高分辨率PNG 数字甚至可缩放矢量图形/ SVG文件?如果是,怎么样?

从我example gallery中可以看到,只能保存低分辨率的PNG文件。

1 个答案:

答案 0 :(得分:1)

这是重复的,但如果没有删除:

从Bokeh export_png(plot, filename="plot.png") 开始,现在可以直接从Python代码导出PNG和SVG。

导出PNG看起来像这样

plot.output_backend = "svg"
export_svgs(plot, filename="plot.svg")

导出SVG看起来像这样

28*28

需要安装一些可选的依赖项。 您可以在Exporting Plots section of the User Guide

中找到更多信息