Skip to content

Instantly share code, notes, and snippets.

@raduromaniuc
raduromaniuc / app.R
Last active June 2, 2018 15:14
renderWordcloud2 blocks renderPlot from initially rendering
library(shiny)
library(shinydashboard)
library(wordcloud2)
data <- data.frame(term = c("A", "B", "C", "D", "E"), count = c(10, 15, 3, 5, 7))
body <- dashboardBody(
fluidRow(
box(
plotOutput("barplot"),