Created
March 17, 2014 14:08
-
-
Save withr/9599781 to your computer and use it in GitHub Desktop.
Upload Excel file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shinyUI(pageWithSidebar( | |
# Include css file; | |
tagList( | |
tags$head( | |
tags$title("Upload Data"), | |
tags$h1("Test") | |
) | |
), | |
# Control panel; | |
sidebarPanel( | |
fileInput(inputId = "iFile", label = "Escolha um arquivo:", accept="application/vnd.ms-excel"), | |
radioButtons("model", "Escolha do Modelo:", | |
list("CRS" = "crs", | |
"VRS" = "vrs")), | |
br(), | |
tags$hr(), | |
uiOutput(outputId = "ui"), | |
uiOutput(outputId = "columns") | |
), | |
# Output panel; | |
mainPanel() | |
)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shinyUI(pageWithSidebar( | |
# Include css file; | |
tagList( | |
tags$head( | |
tags$title("Upload Data"), | |
tags$h1("Test") | |
) | |
), | |
# Control panel; | |
sidebarPanel( | |
fileInput(inputId = "iFile", label = "Escolha um arquivo:", accept="application/vnd.ms-excel"), | |
radioButtons("model", "Escolha do Modelo:", | |
list("CRS" = "crs", | |
"VRS" = "vrs")), | |
br(), | |
tags$hr(), | |
uiOutput(outputId = "ui"), | |
uiOutput(outputId = "columns") | |
), | |
# Output panel; | |
mainPanel() | |
)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment