sf对象的大小图例不会显示正确的符号

时间:2018-03-29 12:10:45

标签: r ggplot2 gis geospatial sf

有谁知道为什么size aestatic BIR74的图例不会显示点尺寸而是矩形?如果答案是肯定的,我该如何解决这个问题?

可再现的例子:

library(sf)
# devtools::install_github("tidyverse/ggplot2")
library(ggplot2)

nc <- st_read(system.file("shape/nc.shp", package="sf"))

nc_centers <- st_centroid(nc)

nc_centers %>%
  ggplot() +
  geom_sf(aes(color = SID79, size = BIR74)) +
  coord_sf(datum = NA) +
  theme_minimal()

enter image description here

1 个答案:

答案 0 :(得分:6)

你需要将show.legend参数添加到geom_sf,即

nc_centers %>%
  ggplot() +
  geom_sf(aes(color = SID79, size = BIR74), show.legend = 'point') +
  coord_sf(datum = NA) +
  theme_minimal()

enter image description here