Skip to content

Instantly share code, notes, and snippets.

@ellchow
ellchow / server.r
Created January 29, 2013 08:29 — forked from wch/server.r
library(shiny)
library(datasets)
library(ggplot2)
tg <- ToothGrowth
tg$dose <- factor(tg$dose)
# Define server logic
shinyServer(function(input, output) {