From f8125c1eca47e4653770215fcbbb40ab616d5e71 Mon Sep 17 00:00:00 2001 From: Mark Fredrickson Date: Mon, 19 Jun 2023 10:04:43 -0400 Subject: [PATCH] removing comments from RStudio default shiny app --- projects/project2b_template.R | 5 ----- 1 file changed, 5 deletions(-) diff --git a/projects/project2b_template.R b/projects/project2b_template.R index f495d5e..ec33b50 100644 --- a/projects/project2b_template.R +++ b/projects/project2b_template.R @@ -31,29 +31,24 @@ library(tidyverse) # this will load the table `homeproject` into the environment load("proj2_homeproj.rda") -# Define UI for application that draws a histogram ui <- fluidPage( # Application title titlePanel("Project 2B Template"), - # Sidebar with a slider input for number of bins sidebarLayout( sidebarPanel( p("This is a placeholder") ), - # Show a plot of the generated distribution mainPanel( p("This is also a placeholder") ) ) ) -# Define server logic required to draw a histogram server <- function(input, output) { } -# Run the application shinyApp(ui = ui, server = server)