forked from fostvedt/Shiny_ncappc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.r
28 lines (25 loc) · 804 Bytes
/
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
shinyUI(fluidPage(
h4("Non-Compartmental Analysis using the ncappc library"),
sidebarPanel(width = 3,
uiOutput("read_Origfile"),
br(),
uiOutput("choose_Xvar"),
uiOutput("choose_Yvar"),
uiOutput("choose_IDvar"),
uiOutput("choose_TRT"),
uiOutput("choose_DOSE"),
br()),
mainPanel(width = 9,
tabsetPanel(
tabPanel("Summary", br(),
h4("Summary Statistics and Plot"),
plotOutput("plot"),
verbatimTextOutput("summary")
),
tabPanel("NCA", br(),
h4("NCA Parameter Estimates"),
tableOutput("table")
)
) # close tabsetPanel
) #close main Panel
))