有谁知道为什么size静态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()

r - SF对象的尺寸图例不会显示正确的符号-LMLPHP

最佳答案

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

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

r - SF对象的尺寸图例不会显示正确的符号-LMLPHP

10-08 02:21