-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
46 lines (44 loc) · 1.23 KB
/
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
39
40
41
42
43
44
45
46
#enableBookmarking(store = "url")
shinyUI(fluidPage(
titlePanel("Doenet Heatmap"),
sidebarLayout(
sidebarPanel(
width = 3,
actionButton("update", "Update Data", icon = icon("sync")),
#bookmarkButton(),
downloadButton('downloadData', 'Download Data'),
#h1("Compare experiments:"),
#textInput("extra_id", "Extra DoenetID"),
#actionButton("submit_extra", "Submit"),
numericInput(
"numid",
"Number of Doenet IDs",
value = 1,
min = 1,
max = 5,
step = 1
),
#actionButton("gennum","next"),
#hard-coded ui for doenet ids
uiOutput("rid"),
uiOutput("id1"),
uiOutput("id2"),
uiOutput("id3"),
uiOutput("id4"),
uiOutput("id5"),
actionButton("submit_extra", "Submit"),
uiOutput("date_slider"),
uiOutput("version_select")
),
mainPanel(
tabsetPanel(
type = "tabs",
tabPanel("Summary Table", dataTableOutput("time_table")),
tabPanel("Time on each question", dataTableOutput("k_m")),
tabPanel("short table", dataTableOutput("short")),
tabPanel("plot", plotOutput("plot"))
#tabPanel("Kmeans", plotOutput("k_m"))
)
)
)
))