``` library(plotly) library(ggwordcloud) data("love_words_small") p <- ggplot(love_words_small, aes(label = word)) + geom_text_wordcloud() ggplotly(p) ``` And other examples from here are not working: https://cran.r-project.org/web/packages/ggwordcloud/vignettes/ggwordcloud.html