gpt4 book ai didi

r - SF 对象的大小图例不会显示正确的符号

转载 作者:行者123 更新时间:2023-12-04 17:15:28 25 4
gpt4 key购买 nike

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

enter image description here

最佳答案

您需要将 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

关于r - SF 对象的大小图例不会显示正确的符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49555694/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com