如何在ipynb文件中保存绘图图?

问题描述 投票:0回答:1

我知道可以导出Plotly图,并且可以显示它。

虽然共享笔记本,但是在Jupyter笔记本中,matplotlib图保持完整,但是,Plotly图却没有。他们只是消失了

我知道Plotly图是浏览器呈现的,但是导出时有什么方法可以将图存储在ipynb文件中?

有没有什么方法可以显示Plotly图,就像matplotlib图一样?

What I’m trying to achieve

python jupyter-notebook plotly
1个回答
0
投票

[enter image description here如果将一系列图形的代码放在单个单元格中,执行并保存,我认为它将在您下次打开时显示。

import plotly.express as px
df = px.data.iris() # iris is a pandas DataFrame
fig = px.scatter(df, x="sepal_width", y="sepal_length")
fig.show()
© www.soinside.com 2019 - 2024. All rights reserved.