-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
71 lines (60 loc) · 1.76 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
71
function(request){
navbarPage(
title = "Patprofile with SafetyexploreR",
theme = shinytheme("cerulean"),
tabPanel(
title = "Wiki",
includeMarkdown("./wiki.md")
),
tabPanel(
title = "Patient Profiles",
patientProfile_modUI(id = "pp_module1")
),
navbarMenu("Adverse Events",
tabPanel(
title = "AE Explorer",
aeExplorerOutput("aeexp")
),
tabPanel(
title = "AE Timelnes",
aeTimelinesOutput("aetim")
)
),
navbarMenu("Lab Analysis",
tabPanel(
title = "Outlier Explorer",
safetyOutlierExplorerOutput("outexp")
),
tabPanel(
title = "Hepatoxicity eDISH",
eDISHOutput("edish")
),
tabPanel(
title = "Shift Plot",
safetyShiftPlotOutput("shiftplot")
),
tabPanel(
title = "Histogram",
safetyHistogramOutput("histplot")
),
tabPanel(
title = "Boxplot",
safetyResultsOverTimeOutput("boxplot")
)
),
tabPanel(
title = "Tendril plot",
tagList(
uiOutput("tendrilTab")
)
),
tabPanel(
title = "eDISH using Plotly",
tagList(
p("Click a point on the scatterplot of lab values to select a subject in the patient profile"),
plotlyOutput(outputId = "linked_ply", height=600, width=600),
verbatimTextOutput("click")
)
)
)
}