mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-07 05:04:58 -05:00
25 lines
482 B
R
25 lines
482 B
R
library(shiny)
|
|
|
|
# Define UI for application that draws a histogram
|
|
fluidPage(
|
|
|
|
# Application title
|
|
titlePanel("Hello Shiny!"),
|
|
|
|
# Sidebar with a slider input for the number of bins
|
|
sidebarLayout(
|
|
sidebarPanel(
|
|
sliderInput("bins",
|
|
"Number of bins:",
|
|
min = 1,
|
|
max = 50,
|
|
value = 30)
|
|
),
|
|
|
|
# Show a plot of the generated distribution
|
|
mainPanel(
|
|
plotOutput("distPlot")
|
|
)
|
|
)
|
|
)
|