library(shiny)
shinyUI(fluidPage(
titlePanel("bikeR"),
sidebarLayout(
sidebarPanel(
radioButtons("rd",
label="Select analysis for dataset",
choices=list("Modeling","Station Stats"),
selected="Modeling"),
uiOutput("Box1"), # Stations
uiOutput("Box3") # Model Types
),
# Show a plot of the generated distribution
mainPanel(
plotOutput("distPlot"),
tableOutput('table')
)
)
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.