Hi!
I have the following code:
library(plotly)
l <- htmltools::tagList()
for(i in 1:3) {
l[[i]] <- plot_ly(x = rnorm(10))
}
for(i in 1:3) {
cat(paste0("\n\n#### ", i, "\n"))
l[[i]]
}
Unfortunately, the plots are not displayed in the html output. Any suggestions? I work with R 4.1.1.
Thank you very much!