gpt4 book ai didi

python - Matplotlib 离线绘图

转载 作者:行者123 更新时间:2023-12-01 08:59:03 26 4
gpt4 key购买 nike

我有一些 matplotlib 图表需要在浏览器中离线查看,我之前使用 MPLD3 来渲染它们,但考虑到需要在没有互联网连接的情况下查看图表,我正在考虑使用plotly。有没有办法离线查看 matplotlib 绘图?

最佳答案

将 matplotlib 图形转换为plotly 的最小示例如下所示。

import matplotlib.pyplot as plt
import plotly
import plotly.plotly as py
import plotly.tools as tls

fig, ax = plt.subplots()
ax.plot([1, 2, 3], [1, 4, 9], "o")

plotly_fig = tls.mpl_to_plotly(fig)
plotly.offline.plot(plotly_fig, filename="plotly version of an mpl figure")

只是发布此内容,因为文档有点难以理解。

关于python - Matplotlib 离线绘图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52615425/

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