使用rbokeh将绘图嵌入到网页中

时间:2015-06-19 21:40:12

标签: python r bokeh rbokeh

我使用rbokeh在R中创建了一个图,我想将其转换为HTML / Javascript以便将其嵌入到网页中。我现在能够用Python上的mpld3来实现这个目标(我知道python上的散景也是如此)但是我希望能够用R中的rbokeh来做到这一点。所以我基本上都在找东西类似于Python的mpld3.fig_to_html(),例如:

fig, ax = plt.subplots()
ax.p1 = plt.bar(...)  
html = mpld3.fig_to_html(fig) # <- converts the plot to html/javascript!
print html   # prints out the html/javascript code as text

或者使用Python的散景模块:embed.autoload_static()

rbokeh图可以转换为html / JavaScript代码吗?

非常感谢提前。

1 个答案:

答案 0 :(得分:0)

看来,到目前为止,saveWidget是最接近我想要的,所以感谢 hrbrmstr 。我希望每次将图形导出到html时都避免从磁盘读取和写入,但是它还不可能。