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