-
Notifications
You must be signed in to change notification settings - Fork 1
/
ui.R
70 lines (63 loc) · 3.42 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
library(shiny)
library(shinydashboard)
ui <- fluidPage(
theme = shinythemes::shinytheme("superhero"),
navbarPage(
title = "METARET Data Explorer",
tabsetPanel(
tabPanel("HOME", icon = icon("home"),
"Introduction Markdown..."),
tabPanel("Tasks", icon = icon("list"),
taskdashboard <- dashboardPage(
dashboardHeader(disable = TRUE),
dashboardSidebar(
width = 270,
menuItem("Holt & Laury", tabName = "HL",
menuSubItem("Presentation", tabName = "HL_presentation", icon = icon("th")),
menuSubItem("Analysis", tabName = "HL_analysis", icon = icon("line-chart"))),
menuItem("Binswanger, Eckel and Grossmann", tabName = "BEG",
menuSubItem("Presentation", tabName = "BEG_presentation", icon = icon("th")),
menuSubItem("Analysis", tabName = "BEG_analysis", icon = icon("line-chart"))),
menuItem("Investment Game", tabName = "IG",
menuSubItem("Presentation", tabName = "IG_presentation", icon = icon("th")),
menuSubItem("Analysis", tabName = "IG_analysis", icon = icon("line-chart"))),
menuItem("Bomb Risk Elicitation Task", tabName = "Bomb",
menuSubItem("Presentation", tabName = "Bomb_presenation", icon = icon("th")),
menuSubItem("Analysis", tabName = "Bomb_analysis", icon = icon("line-chart"))),
menuItem("Balloon Analog Risk Task", tabName = "Balloon",
menuSubItem("Presentation", tabName = "Balloon_presentation", icon = icon("th")),
menuSubItem("Analysis", tabName = "Balloon_analysis", icon = icon("line-chart"))),
menuItem("Certainty equivalent price list", tabName = "Certainty",
menuSubItem("Presentation", tabName = "Certainty_presentation", icon = icon("th")),
menuSubItem("Analysis", tabName = "Certainty_analysis", icon = icon("line-chart")))
),
dashboardBody(
)
)),
tabPanel("Correlation among task", icon = icon("line-chart"),
correlation_task_dashboard <- dashboardPage(
dashboardHeader(disable = TRUE),
dashboardSidebar(),
dashboardBody()
)),
tabPanel("Answers to questionnaires", icon = icon("pencil"),
answers_dashboard <- dashboardPage(
dashboardHeader(disable = TRUE),
dashboardSidebar(),
dashboardBody()
)),
tabPanel("Correlations among questionnaires", icon = icon("line-chart"),
correlations_questionnaires_dashboard <- dashboardPage(
dashboardHeader(disable = TRUE),
dashboardSidebar(),
dashboardBody()
)),
tabPanel("Correlations task <-> questionnaires", icon = icon("line-chart"),
correlations_both_dashboard <- dashboardPage(
dashboardHeader(disable = TRUE),
dashboardSidebar(),
dashboardBody()
))
)
)
)