-
-
Save HughSt/ae2970f9b1bebd3657a7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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(fluidPage( | |
titlePanel("Malaria incidence Zanzibar"), | |
sidebarLayout( | |
sidebarPanel( | |
selectInput("season", | |
label = "Choose season", | |
choices = c("Both","Wet","Dry")), | |
selectInput("travel", | |
label = "Choose travel assumption", | |
choices = c("Travel history", | |
"Time kernal", | |
"No time")) | |
), | |
mainPanel(plotOutput("map")) | |
) | |
)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment