Skip to content

Instantly share code, notes, and snippets.

@jcheng5
Created November 2, 2012 00:42
Show Gist options
  • Save jcheng5/3997886 to your computer and use it in GitHub Desktop.
Save jcheng5/3997886 to your computer and use it in GitHub Desktop.
library(shiny)
shinyServer(function(input, output) {
output$plot1 <- reactivePlot(function() {
plot(cars)
})
})
library(shiny)
shinyUI(bootstrapPage(
plotOutput("plot1")
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment