-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.r
30 lines (29 loc) · 865 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
shinyUI(
fluidPage(
titlePanel("Sentiments in Livy"),
sidebarLayout(
sidebarPanel(
sliderInput(
"Book",
"Book",
min = 0,
max = 35,
value = c(0, 35)
),
checkboxGroupInput(
"typeInput",
"Sentiments",
choices = tolower(c("Anger", "Anticipation", "Disgust", "Fear",
"Joy", "Sadness", "Surprise", "Trust", "Negative",
"Positive")),
selected = tolower(c("Anger", "Anticipation", "Disgust", "Fear",
"Joy", "Sadness", "Surprise", "Trust", "Negative",
"Positive"))
)
),
mainPanel(plotOutput("coolplot"),
tableOutput("results")),
plotOutput("dumbplot")
)
)
)