Files
shiny/inst/examples/hello/ui.R
2012-07-25 08:04:58 -04:00

21 lines
343 B
R

library(shiny)
shinyUI(pageWithSidebar(
headerPanel(
h1("Hello shiny!")
),
sidebarPanel(
sliderInput("obs",
"Number of observations:",
min = 0,
max = 1000,
value = 500)
),
mainPanel(
plotOutput("plot")
)
))