mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-05 12:15:14 -05:00
21 lines
343 B
R
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")
|
|
)
|
|
))
|