Advertisement
Guest User

Untitled

a guest
Jan 28th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. shinyUI(pageWithSidebar(
  2. # Include css file;
  3. tagList(
  4. tags$head(
  5. tags$title("Upload Data"),
  6. tags$h1("Test")
  7. )
  8. ),
  9.  
  10. # Control panel;
  11. sidebarPanel(
  12. fileInput(inputId = "iFile", label = "Escolha um arquivo:", accept="application/vnd.ms-excel"),
  13. radioButtons("model", "Escolha do Modelo:",
  14. list("CRS" = "crs",
  15. "VRS" = "vrs")),
  16. br(),
  17. tags$hr(),
  18. uiOutput(outputId = "ui"),
  19. uiOutput(outputId = "columns")
  20. ),
  21. # Output panel;
  22. mainPanel()
  23. ))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement