Skip to content

Instantly share code, notes, and snippets.

View ziyadsaeed's full-sized avatar

Ziyad Saeed ziyadsaeed

  • Lahore, Pakistan
View GitHub Profile
@hafen
hafen / server.R
Last active December 10, 2015 04:48
Shiny dynamic number of UI elements example
library(shiny)
MAX <- 200
shinyServer(function(input, output) {
# input$nInputs will be changed infrequently
# but input$dummy will be changed frequently
nInputs <- reactive(function() {
# it would be nice to be able add some code here