我想在 1 个 html 页面上有多个 plotly 图而不使用 tools.make_subplots 方法。 (我不想使用它,因为我发现它不容易阅读,而且我希望在每个子图面板中都有一个独特的图例和布局)。
我想用自己独特的布局定义2个图形,并在页面上任意排列它们。我想我知道如何使用 html.Div 对象使用 dash 来做到这一点,但我想知道是否有一种简单的方法可以只使用 plotly 来做到这一点?
最佳答案
我遇到了同样的问题,并按照此处发布的解决方案进行操作:
Esostack 的 Plotly: Plot multiple figures as subplots
但是,当我将多个图形的 html 转储到单个文本文件中时,我发现我添加的每个图形的文件大小增加了 5MB。其中 99.9% 是由 plotly 添加的 java 脚本内容引起的,以使绘图具有交互性。幸运的是,他们还实现了一个参数来指定是否要包含 js。所以你只需要在第一个图中包含它,其余的就跳过它,就像在下面的函数中完成的那样。希望有帮助:
def figures_to_html(figs, filename):
'''Saves a list of plotly figures in an html file.
Parameters
----------
figs : list[plotly.graph_objects.Figure]
List of plotly figures to be saved.
filename : str
File name to save in.
'''
import plotly.offline as pyo
dashboard = open(filename, 'w')
dashboard.write("<html><head></head><body>" + "\n")
add_js = True
for fig in figs:
inner_html = pyo.plot(
fig, include_plotlyjs=add_js, output_type='div'
)
dashboard.write(inner_html)
add_js = False
dashboard.write("</body></html>" + "\n")
关于python - 没有子图的 1 页上的多个 plotly 图,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46821554/