I am trying to display some html plots I have created with rCharts package. It seems I've created'em well cause I can display these in Chrome.
The problem comes when I am coding in Jupyter notebook. I usually display htmls with IRdisplay package, and by doing this:
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")
By just printing n1 or name.html I can display it, not in the Jupyter notebook.