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

20 lines
361 B
R

library(shiny)
shinyUI(pageWithSidebar(
headerPanel(
h1("Shiny text")
),
sidebarPanel(
selectInput("dataset", "Choose a dataset:",
choices = c("rock", "pressure", "cars")),
numericInput("obs", "Number of observations to view:", 10)
),
mainPanel(
verbatimTextOutput("summary"),
tableOutput("view")
)
))