I was wondering if its possible to display the check box option side by side on the UI. Some sample code that I\'ve tried:
shinyUI(pageWithSidebar( headerPanel
You can use checkboxGroupInput with inline = TRUE param:
checkboxGroupInput
inline = TRUE
checkboxGroupInput(inputId = "simOption", label = "", choices = c("Historical Data" = TRUE, "Historical Data 2" = TRUE), inline = TRUE)