inst/apps/myFirstApp/ui.R

ui <- fluidPage(title = "My First App!",
                responsive = NULL,
                theme = shinythemes::shinytheme('flatly'),
    

                sidebarLayout(
                  sidebarPanel(width = 3,
                    sliderInput("num_colors",
                                label = "Number of colors:",
                                min = 1,
                                max = 9,
                                value = 7),
                    selectInput("select",
                                label = "Select Demographic:",
                                choices = colnames(map_data)[2:9],
                                selected = 1)),


                  mainPanel(width = 9,
                      tabsetPanel(
                        tabPanel(title = "Output Map",
                                 plotOutput(outputId = "map")),
                        tabPanel(title = "Data Table",
                                 dataTableOutput(outputId = "table"))))))
jtelliott/attrition-forecast documentation built on May 4, 2019, 10:55 a.m.