mercredi 30 janvier 2019

How to add a label each splitLayout using shinyDashboard?

I am trying to create a tool using shinydashboard that performs survival analysis using user specified inputs. For the following code snippet is there a way to add a row label for the splitLayout? So that the following could look something like this: (Visit1 is the label and '###' text input box)

          Disease Score   Age   BMI
Visit1    #############   ###   ###



dashboardSidebar(
width = 300,
br(),
splitLayout(
  cellWidths = c("33%", "33%", "33%"),
  textInput("burden", "Disease Score", value = "2"),
  textInput("age", "Age", value = "40"),
  textInput("bmi", "BMI", value = "5")
),




Aucun commentaire:

Enregistrer un commentaire