Skip to content

Instantly share code, notes, and snippets.

View aygons's full-sized avatar

Songya Pan aygons

  • Stitch Fix
  • San Francisco
View GitHub Profile
@pssguy
pssguy / server.R
Last active December 20, 2015 11:49
Nested tabsets
require(shiny)
shinyServer(function(input, output, session) {
})
@wch
wch / app.r
Last active December 18, 2023 16:41
Shiny example app with dynamic number of plots
max_plots <- 5
ui <- fluidPage(
headerPanel("Dynamic number of plots"),
sidebarPanel(
sliderInput("n", "Number of plots", value=1, min=1, max=5)
),