Im can't display HTML widgets in Jupyter Notebooks when using R (works when using python). For example, none of the graphical charts work on a Jupyter R. laptop. Is there any solution for this?
library(plotly) set.seed(100) d <- diamonds[sample(nrow(diamonds), 1000), ] plot_ly(d, x = carat, y = price, text = paste("Clarity: ", clarity), mode = "markers", color = carat, size = carat)
Code is running, but the graph is not displayed
source share