-
Notifications
You must be signed in to change notification settings - Fork 370
/
ui.R
38 lines (31 loc) · 957 Bytes
/
ui.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# This is the user-interface definition of a Shiny web application.
# You can find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com
#
library(shiny)
library(choroplethr)
data('df_state_demographics')
shinyUI(fluidPage(
# Application title
titlePanel("USA Census - by Susan Li"),
# Sidebar with a slider input for number of bins
sidebarLayout(
sidebarPanel(
sliderInput("num_colors",
"Number of colors:",
min = 1,
max = 9,
value = 7),
selectInput("select", label = "Select demographic:",
choices = colnames(df_state_demographics)[2:9],
selected = 1),
downloadButton('downloadData', 'Download')
),
# Show a plot of the generated distribution
mainPanel(
plotOutput("map"),
dataTableOutput("table")
)
)
))