STAT 220
Every Shiny app has two main parts:
You combine these with shinyApp
to make your interactive web app.
To tell RStudio it’s a Shiny app, add runtime: shiny
to the top of your R Markdown file.
Link here
ui <- fluidPage(
titlePanel("My Tabbed App"),
sidebarLayout(sidebarPanel("Inputs here"),
mainPanel(tabsetPanel(
tabPanel("Plot", plotOutput("plot")),
tabPanel("Summary", verbatimTextOutput("summary")),
tabPanel("Table", DTOutput("table")))))
)
server <- function(input, output) {}
shinyApp(ui = ui, server = server)
ca18-yourusername
repository from Github30:00