我使用 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 代码吗?
提前谢谢了。