Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. shinyApp(
  2. ui = fluidPage(
  3. selectInput("variable", "Saisons:",
  4. list(`Saisons` = names(data_carte)[4:ncol(data_carte)])),
  5. plotOutput(outputId = "main_plot")
  6. ),
  7. server = function(input, output) {
  8.  
  9. output$main_plot <- renderPlot({
  10.  
  11. map_plot(input$variable)
  12. })
  13. }
  14. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement