gpt4 book ai didi

python - 在 Jupyter Notebook 中保存 Plotly 离线图像?

转载 作者:太空宇宙 更新时间:2023-11-04 09:34:19 25 4
gpt4 key购买 nike

我在 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 文件,具体如何将它保存为我的 Jupyter Notebook 文件夹中的 PNG 文件。

我试过这里找到的解决方案: How to save Plotly Offline graph in format png?

但我不确定将代码放在哪里,因为我的绘图代码不同。我所做的一切都以错误告终。有什么建议么?

最佳答案

通过向 iplot 提供 filename 参数来尝试以下操作

plotly.offline.iplot(fig, filename='filename.png')

来自docs

Signature: plotly.offline.iplot(figure_or_data, show_link=True, link_text='Export to plot.ly', validate=True, image=None, filename='plot_image', image_width=800, image_height=600, config=None)

还要确保笔记本右上角的信任按钮显示Trusted。如果不是,请单击 Not Trusted 使其生效。

the "not trusted" vs "trusted" toggle button in upper-right of Jupyter notebook

关于python - 在 Jupyter Notebook 中保存 Plotly 离线图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54390772/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com