# Define UI for application that draws a histogram
ui = fluidPage(
# Application title
titlePanel("Old Faithful Geyser Data"),
# Sidebar with a slider input for 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")
)
)
)
ui <- secure_app(ui, choose_language = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.