python - Embedding plot to web page using rbokeh -


i have created plot in r using rbokeh , want convert html/javascript in order embed inside web page. i'm able achieve mpld3 on python (and know bokeh on python too) want able rbokeh in r. i'm looking similar python's mpld3.fig_to_html(), e.g:

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

or using python's bokeh module: embed.autoload_static()

can rbokeh plots converted html/javascript code?

many in advance.

it appears that, date, savewidget closest want, hrbrmstr. wanted avoid having read , write disk every time graph exported html it's not possible yet.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -