Skip to content

Instantly share code, notes, and snippets.

@piroyoung
Created January 13, 2014 13:01
Show Gist options
  • Save piroyoung/8399873 to your computer and use it in GitHub Desktop.
Save piroyoung/8399873 to your computer and use it in GitHub Desktop.
library(shiny)
# Define UI for application that plots random distributions
shinyUI(pageWithSidebar(
# Application title
headerPanel("Histgram of sample mean about dicerolling"),
# Sidebar with a slider input for number of observations
sidebarPanel(
sliderInput("obs",
"Number of observations:",
min = 50,
max = 1000,
value = 200)
),
# Show a plot of the generated distribution
mainPanel(
plotOutput("distPlot")
)
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment