在googleway中使用add_heatmap添加色阶

时间:2017-10-03 15:04:46

标签: r heatmap googleway

我正在使用googleway创建热图。例如,对于?add_heatmap帮助中给出的tram_route示例,如何添加色标以便读者知道与该颜色相关的数字是什么?

谢谢。

1 个答案:

答案 0 :(得分:0)

注意:

截至2017年10月4日,该传奇仍处于开发阶段,可能会有所变化,可能尚未100%全面运作。

安装

devtools::install_github("SymbolixAU/googleway")
library(googleway)

实施例

set.seed(20170417)
df <- tram_route
df$weight <- sample(1:10, size = nrow(df), replace = T)

google_map(key = map_key, data = df) %>%
  add_heatmap(lat = "shape_pt_lat", lon = "shape_pt_lon", weight = "weight",
              option_radius = 0.001, legend = T)

enter image description here

## specifying different colour gradient
option_gradient <- c('orange', 'blue', 'mediumpurple4', 'snow4', 'thistle1')

google_map(key = map_key, data = df) %>%
 add_heatmap(lat = "shape_pt_lat", lon = "shape_pt_lon", weight = "weight",
              option_radius = 0.001, option_gradient = option_gradient, legend = T)

enter image description here