r - 使用 R shiny 中的 sliderInput 动态渲染等值线图

标签 r shiny leaflet

我有 shapefile,我正在使用 readOGR 将其读入 R 以将其转换为 SpatialPolygonDataframe。属性表如下图所示。

enter image description here

每一行都是一个区域(邮政编码区域),一天中的每个小时都有值,例如:h_0、h_1、...h_23 为每个区域测量。在我 Shiny 的应用程序中,我想显示一张 map ,该 map 会随着用户使用 sliderInput 小部件选择特定时间而变化。 Shiny 的应用程序如下所示:

enter image description here

产生上述结果的代码在这里:

 library(shiny)
 library(leaflet)
 library(reshape2)
 library(maps)
 library(mapproj)
 library(rgdal)
 library(RColorBrewer)
 library(sp)
 library(rgeos)



ui <- fluidPage(

 titlePanel("Title"),

 sidebarLayout(

 sidebarPanel(
   tabsetPanel(id= "tabs",

              tabPanel("Map", id = "Map", 
                       br(), 

                       p("Choose options below to interact with the Map"), 

                       sliderInput("hour", "Select the hours", min = 0 , max = 23, 
                                   value = 7, step = 1, dragRange= TRUE)
                       )
  )
),

mainPanel(

  tabsetPanel(type= "tabs",


              tabPanel("Map", leafletOutput(outputId = "map"))
          )
  )
 )
 )



 server <- function(input, output) {


  layer <- reactive( {

      shp = readOGR("shp",layer = "attractiveness_day3")
      shp_p <- spTransform(shp, CRS("+proj=longlat +datum=WGS84 +no_defs +ellps=WGS84 +towgs84=0,0,0"))

  })

 output$map <- renderLeaflet({
     bins<- c(0, 2000, 4000, 8000, 16000, Inf)
    pal <- colorBin("YlOrRd", domain = layer()$h_7, bins = bins)

    leaflet(layer()) %>% 
    setView(13.4, 52.5, 9) %>% 
    addTiles()%>%
      addPolygons( 
        fillColor = ~pal(h_7),
        weight = 0.0,
        opacity = 1,
        color = "white",
        dashArray = "3",
        fillOpacity = 0.7 
      )  %>% 
      addLegend(pal = pal, values = ~h_7, opacity = 0.7, title = NULL, position = "bottomright")


  })
  #until here it works but onwards not. 
 observe(leafletProxy("map", layer())%>%
           clearShapes()%>%
           addPolygons( 
             fillColor = ~pal(h_7),  # is it possible here to pass column name dynamically
             weight = 0.0,
             opacity = 1,
             color = "white",
             dashArray = "3",
             fillOpacity = 0.7 
           )  %>% 
           addLegend(pal = pal, values = ~h_7, opacity = 0.7, title = NULL, position = "bottomright")
 )

}


shinyApp(ui, server)

因此,当前等值线图填充了静态选择的 h_7 列的值。但我不知道如何以及是否可以根据 sliderInput 选择动态传递列名(例如,如果 sliderInput 值为 8,则相应的列为 h_8)。然后根据从 react 函数传递给 observeleafletProxy 函数的选定列渲染 map 。

示例数据:sample data

最佳答案

可以将列名作为字符串传递。在 leafletProxy 中,您可以使用 dataset[[column_name]] 链接到您的列值。使用单个方括号,您不仅可以选择值,还可以选择相应的多边形。

要使您的应用正常运行,您需要在 leafletProxy 函数之外调用 layer()。此外,使用 clearControls() 删除重复的图例。

最后,我不确定为什么要将 shapefile 放在 reactive 表达式中。如果您只是将它作为变量添加到您的 server 中,它也会起作用。

 observeEvent({input$hour},{
    hour_column <- paste0('h_',input$hour)
    data = layer()[hour_column]
    pal <- colorBin("YlOrRd", domain = as.numeric(data[[hour_column]]), bins = bins)
    leafletProxy("map", data=data)%>%
      clearShapes()%>%
      addPolygons( 
        fillColor = pal(as.numeric(data[[hour_column]])),  
        weight = 0.0,
        opacity = 1,
        color = "white",
        dashArray = "3",
        fillOpacity = 0.7 
      )  %>% clearControls() %>%
      addLegend(pal = pal, values =as.numeric(data[[hour_column]]), opacity = 0.7, title = NULL, position = "bottomright")
  })

关于r - 使用 R shiny 中的 sliderInput 动态渲染等值线图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53480924/

相关文章:

r - 对齐不同的绘图形状

r - 在 Shiny 的 DT 数据表中更改数据集时保留选定的行

r - 有没有办法在 R 中显示 .gif 文件?

javascript - Leaflet.js - 我可以在单个多边形内添加多个孔/切口吗

leaflet - 传单中的动画 setView()

d3.js - D3 最新传单版本

R:如何删除正方形右下半部分的值,以便结果是三角形?

r - 需要帮助找到一种快速方法来识别每个变量的第一个非缺失观察值

r - 如何使 grepl 功能具体化?

r - 如何通过URL将参数传递给 Shiny 的应用程序