Tde*_*eus 5 gis r geospatial ggplot2 r-sf
有谁知道为什么sizeaestatic 的传说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()
Run Code Online (Sandbox Code Playgroud)
seb*_*rno 10
你需要将show.legend参数添加到geom_sf,即
nc_centers %>%
ggplot() +
geom_sf(aes(color = SID79, size = BIR74), show.legend = 'point') +
coord_sf(datum = NA) +
theme_minimal()
Run Code Online (Sandbox Code Playgroud)