合并单独的大小并填充ggplot中的图例

时间:2018-06-14 16:25:35

标签: r ggplot2 gis ggmap

我在地图上绘制点数据,并希望缩放点大小并填充到另一列。然而,ggplot为大小和填充产生两个单独的图例,我只需要一个。我已经查看了同一问题的几个答案,例如this一个,但无法理解我做错了什么。我的理解是,如果两种美学都映射到相同的数据,那么应该只有一个传说,对吗?

这里有一些代码来说明问题。非常感谢任何帮助!

lat <- rnorm(10,54,12)
long <- rnorm(10,44,12)
val <- rnorm(10,10,3)

df <- as.data.frame(cbind(long,lat,val))

library(ggplot2)
library(scales)
ggplot() +
 geom_point(data=df,
            aes(x=lat,y=long,size=val,fill=val),
            shape=21, alpha=0.6) +
  scale_size_continuous(range = c(2, 12), breaks=pretty_breaks(4)) +
   scale_fill_distiller(direction = -1, palette="RdYlBu") +
    theme_minimal()

1 个答案:

答案 0 :(得分:4)

this answer为例,引用R-Cookbook:

  

如果同时使用颜色和形状,则需要给出尺度规格。否则会有两个不同的传说。

因此,我们可以推断它与sizefill参数相同。我们需要两个尺度来适应。为此,我们可以在breaks=pretty_breaks(4)部分再次添加scale_fill_distiller()。然后使用guides()我们可以实现我们想要的目标。

set.seed(42)  # for sake of reproducibility
lat <- rnorm(10, 54, 12)
long <- rnorm(10, 44, 12)
val <- rnorm(10, 10, 3)

df <- as.data.frame(cbind(long, lat, val))

library(ggplot2)
library(scales)
ggplot() +
  geom_point(data=df, 
             aes(x=lat, y=long, size=val, fill=val), 
             shape=21, alpha=0.6) +
  scale_size_continuous(range = c(2, 12), breaks=pretty_breaks(4)) +
  scale_fill_distiller(direction = -1, palette="RdYlBu", breaks=pretty_breaks(4)) +
  guides(fill = guide_legend(), size = guide_legend()) +
  theme_minimal()

<强> 产地: enter image description here