R Shiny: Updating an output before another (relatively long) computation is finished
问题 I have the following problem. My shiny app is basically doing the following on the server side after a button is clicked: observe({ isolate({ ## Here are a lots of computations with the results shown iteratively using invalidateLater(): }) if( computations not done ){ invalidateLater(500) } else { #Once the computations are done, I create a final output table and also a image. output$example <- renderTable( something based on the computations ) output$example2 <- renderPlot( something based