4

我的问题结合了之前在 Stackoverflow 上发布的两个单独的问题:i。 向 ggplot和 ii 添加多个图例。将线图例添加到 geom_sf

我想添加多个图例ggplot2(如第一篇文章中所述),但我正在使用sf. 这使填充美学空间变得复杂。我建议的答案。以上不适用于多种类型的几何图形——我们不能将点和线分配给单个类然后使用因子。就我而言,我有几个线和点 shapefile,并且只想为添加的每个 shapefile 添加一个单独的图例条目。

似乎没有必要调用aes(),但aes()可能是调用图例的唯一方法。

可重现的例子

我想做类似于以下的事情(借用(i)),但没有这样as.factor我可以单独调用geom_sf

library(sf)
library(ggplot2)

# reproducible data
lon<-c(5.121420, 6.566502, 4.895168, 7.626135)
lat<-c(52.09074, 53.21938, 52.37022, 51.96066)
cities<-c('utrecht','groningen','amsterdam','munster')
size<-c(300,500,1000,50)

xy.cities<-data.frame(lon,lat,cities,size)

# line example
line1 <- st_linestring(as.matrix(xy.cities[1:2,1:2]))
line2 <- st_linestring(as.matrix(xy.cities[3:4,1:2]))

lines.sfc <- st_sfc(list(line1,line2))
simple.lines.sf <- st_sf(id=1:2,size=c(10,50),geometry=lines.sfc)

ggplot() + 
 geom_sf(data= simple.lines.sf, aes(colour = as.factor(id)), show.legend = "line")

也就是说,更像是:

ggplot() + 
 geom_sf(data= dataset1, color="red" ) +
 geom_sf(data= dataset2, color="blue" )
4

1 回答 1

4

我不确定我是否完全理解你想要什么。在这里,我们将值“A”和“B”映射到颜色 aestetic 以获得图例,然后我们使用自定义颜色scale_color_manual

dataset1 <- st_sf(st_sfc(list(line1)))
dataset2 <- st_sf(st_sfc(list(line2)))

ggplot() + 
    geom_sf(data= dataset1, aes(color="A"), show.legend = "line") +
    geom_sf(data= dataset2, aes(color="B"), show.legend = "line") +
    scale_color_manual(values = c("A" = "red", "B" = "blue"), 
                       labels = c("Line1", "Line2"),
                       name = "Which line ?") 

在此处输入图像描述

于 2018-02-14T22:00:26.920 回答