Skip to content

Instantly share code, notes, and snippets.

@tommo42
tommo42 / server.R
Created November 16, 2012 05:23 — forked from jcheng5/server.R
Simple matrixInput example
library(shiny)
shinyServer(function(input, output) {
output$plot <- reactivePlot(function() {
plot(input$foo)
})
})