Advertisement
Guest User

Untitled

a guest
May 26th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. ui <- shinyUI(fluidPage(
  2. fluidRow(
  3. column(12,
  4. "Fluid12",
  5. fluidRow(
  6. column(3,
  7. "Fluid3",
  8. numericInput('H_lbv', 'Height - lower bound', 10),
  9. numericInput('H_ubv', 'Height - upper bound', 21),
  10. numericInput('D_lbv', 'Diam. - lower bound', 8),
  11. numericInput('D_ubv', 'Diam. - upper bound', 16),
  12. numericInput('ro_lbv', 'Dens. - lower bound', 0.3),
  13. numericInput('ro_ubv', 'Dens. - upper bound', 1.0)
  14. ),
  15. column(width = 9,
  16. "Fluid9",
  17. fluidRow(
  18. column(3,
  19. plotOutput("plot")),
  20. column(width=3,
  21. plotOutput("plot2")),
  22. column(width=3,
  23. plotOutput("plot3"))
  24. ), fluidRow( ## I thought this would work to add the second row
  25. column(width=9,
  26. plotOutput("plot3"))
  27. )
  28. )
  29. )
  30. )
  31. )
  32. )
  33. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement