-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
36 lines (33 loc) · 1.14 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
# This is the user-interface definition of a Shiny web application.
library(shiny)
library(datasets)
source("global.R", local=FALSE)
shinyUI(navbarPage("RJIT benchmarks",
tabPanel("Compilation",
sidebarPanel(
selectInput("ipackage", "Package:",
choices=names(processed_data$compilation), selectize = FALSE),
hr(),
selectInput("ifunction", "Function:",
choices=names(processed_data$compilation$base$functions),
selectize = FALSE,
selected="parse"),
hr()
),
mainPanel(
plotOutput("compilationPackageTimes"),
plotOutput("compilationFunctionTimes")
)
),
tabPanel("Execution",
sidebarPanel(
selectInput("iexecution_date", "Date",
choices=names(processed_data$execution), selectize = FALSE),
hr()
),
mainPanel(
plotOutput("executionSummary")
)
)
)
)