我在Jupyter Notebook中绘制了一些代码,我要做的就是将图像另存为PNG,以便在做某些工作时将其用作高DPI图像:
data = [trace1, trace2]
layout = {"title": "",
"xaxis": {"title": "", },
"yaxis": {"title": ""}}
fig = go.Figure(data=data, layout=layout)
plotly.offline.iplot(fig)
我无法弄清楚如何将其另存为PNG文件,尤其是将其另存为PNG文件在Jupyter Notebook文件夹中。
我尝试了在这里找到的解决方案: How to save Plotly Offline graph in format png?
但是我不确定将代码放置在哪里,因为我的绘图代码是不同的。我所做的一切最终都会出错。有什么建议么?
答案 0 :(得分:2)
通过为_BackupScenes
提供filename
参数来尝试以下操作
iplot
从docs
签名:plotly.offline.iplot(figure_or_data,show_link = True,link_text ='导出到plot.ly',validate = True,image = None,filename ='plot_image',image_width = 800,image_height = 600,配置=无)