### ui for patients sub tab of Data tab
patients_data_tab <- tabPanel("Patients",
dataTableOutput("patients_table"),
includeMarkdown(system.file("app/patients.Rmd", package = "RShinyExcercise")),
tags$h3("Visualize"),
fluidRow(column(width = 3,
pickerInput("attribute","Attribute",
choices = c("SEX","RACE","ACTARMCD","BMRKR2","BMRKR1","AGE"),
multiple = FALSE,width = '200px')),
column(width = 9,
plotOutput("attribute_plot",width = "80%"))
)
)
### ui for lab tests sub tab of Data tab
lab_tests_data_tab <- tabPanel("Lab Tests",
dataTableOutput("lab_tests_table"),
includeMarkdown(system.file("app/lab_tests.Rmd", package = "RShinyExcercise"))
)
### ui for side bar in Explore tab
explore_side_bar_ui <- sidebarPanel(width = 3,
tags$h5("Select patient to render lab test results"),
selectInput("patient_id", "Subject ID", choices = patients$USUBJID, selected = patients$USUBJID[[1]], multiple = FALSE, width = '250px'),
tags$hr(style="border: none; border-bottom: 1px solid black;"),
tags$h5("Select attribute values to see how patients respond over time in different test groups"),
pickerInput("sex", "Sex", choices = levels(lab_tests_joined$SEX), selected = "F", multiple = TRUE,width = '200px',options = list(`actions-box` = TRUE, size = 10,`selected-text-format` = "count > 2")),
pickerInput("race","Race", choices = levels(lab_tests_joined$RACE), selected = "ASIAN", multiple = TRUE, width = '200px',options = list(`actions-box` = TRUE, size = 10,`selected-text-format` = "count > 2")),
sliderInput("bmrkr1","BMRKR1", min = round(min(lab_tests$BMRKR1),2), max = round(max(lab_tests$BMRKR1),2),value = c(1,10) , ticks = FALSE),
pickerInput("bmrkr2","BMRKR2", choices = levels(lab_tests_joined$BMRKR2), selected = "MEDIUM", multiple = TRUE,width = '200px',options = list(`actions-box` = TRUE, size = 10,`selected-text-format` = "count > 2")),
radioButtons("lbtestcd","LBTESTCD ", choices = levels(lab_tests_joined$LBTESTCD), selected = "IGA",inline = TRUE, width = '200px')
)
### ui for main panel in Explore tab
explore_main_panel_ui <- mainPanel(width = 9,
tags$h3("Summary of individual patient for all the tests"),
fluidRow(column(width = 3,tableOutput("patient_details")),
column(width = 9,plotOutput("patient_plot"))),
tags$hr(style="border: none; border-bottom: 1px solid black;"),
tags$h3("Summary of patients in different treatment groups for the selected attribute values"),
plotOutput("time_plot")
)
ui <-
navbarPage(theme = shinytheme("flatly"),
title = "Lab Tests Trials",
tabPanel("Data",
tags$h2("Exploring Patients/Lab Tests Data"),
tabsetPanel(patients_data_tab,
lab_tests_data_tab
)
),
tabPanel("Explore",
sidebarLayout(explore_side_bar_ui,
explore_main_panel_ui
)
),
tabPanel("About",
includeMarkdown(system.file("app/about.Rmd", package = "RShinyExcercise"))
)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.