-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui.R
More file actions
25 lines (21 loc) · 680 Bytes
/
ui.R
File metadata and controls
25 lines (21 loc) · 680 Bytes
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
source("./scripts/script.R")
library(shiny)
# Define UI for application that draws a histogram
ui <- fluidPage(
# Application title
titlePanel("ESTDatS Restaurant Finder"),
# Sidebar with a slider input for number of bins
sidebarLayout(
sidebarPanel(
selectInput(inputId = "Type",
label = "Style of Food:",
choices = unique(restaurants$Style),
multiple = TRUE,
selected = unique(restaurants$Style))
),
# Show a plot of the generated distribution
mainPanel(
tmapOutput("locs", height = 800)
)
)
)