Skip to content

Instantly share code, notes, and snippets.

View gdepalma's full-sized avatar

Glen DePalma gdepalma

View GitHub Profile
@gdepalma
gdepalma / server.R
Created January 9, 2013 18:24
Testing progress bar for shiny app.
library(shiny)
shinyServer(function(input, output) {
output$intense <- reactivePrint(function() {
if(input$panel==2){
Sys.sleep(10)
return('Finished')
}else({return(NULL)})
})