gpt4 book ai didi

python - 保存带有 Bokeh 图像的 html 文件

转载 作者:行者123 更新时间:2023-12-02 14:23:28 27 4
gpt4 key购买 nike

我正在创建一个包含多个图像的 Bokeh 图。我像这样创建并显示我的文件:

output_file(my_dir + "Graphs\\graph")
show(bar)

然后它会向我显示绘图并在我的目录“Graphs”中创建一个 graph.html 文件。但是当我稍后打开 html 时,该图不包含图像。如何保存 html 文件,使其也包含图像?

最佳答案

正如文档中提到的,您有两种方法可以实现此目的:

  • 使用 save()而不是 show()

    from bokeh.plotting import figure, output_file, save
    p = figure(title="Basic Title", plot_width=300, plot_height=300)
    p.circle([1, 2], [3, 4])
    output_file("test.html")
    save(p)
  • 使用 file_html函数,这是低级的

    from bokeh.plotting import figure
    from bokeh.resources import CDN
    from bokeh.embed import file_html

    plot = figure()
    plot.circle([1,2], [3,4])

    html = file_html(plot, CDN, "my plot")

    with open("/myPath.html") as f:
    f.write(html)

关于python - 保存带有 Bokeh 图像的 html 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44281863/

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