3

我在 ggplot 中有一个图,我希望覆盖我用基本 R 代码创建的地图图例。我不知道如何在 ggplot 上覆盖基本 R 图形,我将不胜感激。

目前我有一个 ggplot 图例,如下所示: 在此处输入图像描述

关于这个传说,有几件事我不喜欢我想改变(这导致我认为诉诸基本 R 图形来这样做会更容易)。

特别是,我希望消除图例中框之间的空白,并且我也希望在框之间添加刻度线。我还希望将“5”放在分隔第一个和第二个框的第一个刻度线下方;分隔第二个和第三个框的刻度线下方的“10”;和分隔第三个和第四个框的刻度线下方的“20”。我还希望使图例中的框与我的情节中的“箱”之一的大小相同(我使用 stat_bin2d 层)。

相关代码:

ggplot()+
stat_bin2d(restaurants.df,binwidth=c(1500,2500), alpha=0.6,aes(x=X,y=Y,fill=cut(..count.., c(0,5,10,20,Inf))))+
scale_fill_manual("No. of Restaurants",labels=c("<5","5-10","10-20",">20"),values=cols, guide = guide_legend(direction = "horizontal", title.position = "top",                                      ticks=TRUE,label.position="bottom")) + 
theme(legend.background = element_rect(colour = "black"),
    legend.key = element_rect(color='black'))
4

2 回答 2

6

@baptiste 的评论让我对尝试创建一个将成为传奇的情节感兴趣。这是我的尝试。我geom_tile用来创建一个将成为传奇的情节。OP 没有提供示例数据,所以我使用内置mtcars数据创建了一个绘图,只是为了将图例放在旁边。然后我用它grid.arrange来创建最终的情节加图例布局。

library(ggplot2)
library(grid)
library(gridExtra) 

## Create legend

# Fake data
dat = data.frame(x=1:4, y="Group", col=factor(1:4))

# Create a plot that will become the legend
legend = ggplot(dat, aes(x,y, fill=col)) + 
  geom_tile(show.legend=FALSE) +
  scale_x_continuous(breaks=c(1.5,2.5,3.5), labels=c(5,10,20)) +
  scale_fill_manual(values=c("yellow","orange","red","darkred")) +
  labs(y="", x="") +
  ggtitle("No. of Restaurants") +
  theme_bw() +
  theme(panel.border=element_blank(),
        axis.ticks.y=element_blank(),
        axis.text.y=element_blank())

## Create a plot to put next to the legend
p1 = ggplot(mtcars, aes(mpg, wt)) + 
  geom_point() +
  theme(plot.margin=unit(c(0,0,0,0)))

# Arrange plot and legend
grid.arrange(p1, arrangeGrob(rectGrob(gp=gpar(col=NA)), 
                             legend,
                             rectGrob(gp=gpar(col=NA)),
                             heights=c(0.42,0.16,0.42)), 
             widths=c(0.8,0.2))

在此处输入图像描述

于 2015-09-15T03:01:04.727 回答
3

定义自己的自定义图例可能会更容易,

library(gridExtra)
library(grid)

stripGrob <- function(cols = c("yellow","orange","red","darkred"), 
                      labels= c(5,10,20), 
                      gp=gpar(fontsize=10,fontface="italic"), vp=NULL){
  n <- length(cols)
  rg <- rasterGrob(t(cols), y=1, vjust=1, interpolate = FALSE)
  sg <- segmentsGrob(x0=seq(1/n, 1-1/n, length.out=n-1),
                     x1=seq(1/n, 1-1/n, length.out=n-1),
                     y0=unit(1,"npc") - grobHeight(rg),
                     y1=unit(1,"npc") - grobHeight(rg) - unit(2,"mm"),
                     gp=gpar(lwd=2))
  tg <- textGrob(labels, x=seq(1/n, 1-1/n, length.out=n-1),
                 unit(1,"npc") - grobHeight(rg) - grobHeight(sg) - unit(1,"mm"), 
                 vjust=1)

  stripGrob <- gTree(children = gList(rg, tg, sg), gp=gp, vp=vp)
}

qplot(1,1) +
  annotation_custom(grob=stripGrob(), xmax=1.0)

在此处输入图像描述

于 2015-09-15T05:05:13.537 回答