gpt4 book ai didi

python - 绘图对象在 DataBricks 中显示为空白

转载 作者:行者123 更新时间:2023-12-03 17:10:44 27 4
gpt4 key购买 nike

我有一个应该正确显示的绘图对象,但由于某种原因,它在 DataBricks 中只显示为空白。对象类型为:

plotly.graph_objs._figure.Figure
我尝试了以下方法来显示该图:
fig.show()
display(fig)
displayHTML(fig.to_html())
我能想到的所有可能的解决方案都会导致同样的事情。谢谢!
顺便说一句...使用 Plotly 4.9 版

最佳答案

尝试使用 plot方法来自 plotly.offline .以下内容来自 DataBricks documentation ,但 Jupyter 笔记本也有类似的问题,除非您使用 plotly.offline,否则不会呈现 Plotly graph_object Figure .

from plotly.offline import plot
import plotly.graph_objects as go

# Instead of simply calling plot(...), store your plot as a variable and pass it to displayHTML().
# Make sure to specify output_type='div' as a keyword argument.
# (Note that if you call displayHTML() multiple times in the same cell, only the last will take effect.)

p = plot(
[ ## define your go.Figure here ##

],
output_type='div'
)

displayHTML(p)

关于python - 绘图对象在 DataBricks 中显示为空白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63818514/

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