From: https://stackoverflow.com/questions/35361751/embed-html-in-jupyter-with-r-kernel
This should work out of the box:
library(IRdisplay)
library(rCharts)
n1 <- nPlot(Freq ~ V2, group = "V1", data = x, type = "multiBarChart")
n1$save("NAME.html", standalone = TRUE)
display_html(file = "NAME.html") # must be isolated...
display_html should do the same stuff as the kernel does: IRkernel/IRkernel@f2a153d#diff-6eae7f9cccd978b5b4d819baa7a34b1eR212
From: https://stackoverflow.com/questions/35361751/embed-html-in-jupyter-with-r-kernel
This should work out of the box:
display_html should do the same stuff as the kernel does: IRkernel/IRkernel@f2a153d#diff-6eae7f9cccd978b5b4d819baa7a34b1eR212