-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
37 lines (29 loc) · 1.12 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
library(shiny)
shinyUI(navbarPage("EurekaHedge Dashboard",
#Tab 1: Performance Viewer
tabPanel("Current Summary",
fluidRow(
column(6,
plotlyOutput("index", height = 600),
align = "center"
),
column(6,
plotOutput("sorted", height = 600),
align = "center"
)
),
fluidRow(
column(6,
sliderInput("TimeSelector", label = h5("Trailing # Month(s)"), min = 0, max = 200, value = 12),
align = "center"
),
column(6,
sliderInput("MonthSelector", label = h5("# Month(s) Ago"), min = 0, max = 12, value = 0),
align = "center"
)
)
),
tabPanel("Correlation Heatmap",
plotOutput("correlation", height = 800)
)
))