0

我正在尝试使用ggplot2and插入一个图annotation_custom(该图实际上是我用来替换图例的地图)。但是,我也facet_wrap用于生成多个面板,但是当与 一起使用时annotation_custom,这会重现每个方面的图。有没有一种简单的方法只插入一次绘图,最好是在绘图区域之外?

这是一个简短的例子:

#Generate fake data
set.seed(9)
df=data.frame(x=rnorm(100),y=rnorm(100),facets=rep(letters[1:2]),
              colors=rep(c("red","blue"),each=50))
#Create base plot
p=ggplot(df,aes(x,y,col=colors))+geom_point()+facet_wrap(~facets)
#Create plot to replace legend
legend.plot=ggplotGrob(
  ggplot(data=data.frame(colors=c("red","blue"),x=c(1,1),y=c(1,2)),
         aes(x,y,shape=colors,col=colors))+geom_point(size=16)+
         theme(legend.position="none") )
#Insert plot using annotation_custom
p+annotation_custom(legend.plot)+theme(legend.position="none") 
#this puts plot on each facet!

这会产生以下情节: 情节1 当我想要更多类似的东西时: 理想的情节 感谢任何帮助。谢谢!

4

1 回答 1

2

在它的帮助下annotation_custom()据说 annotations "are the same in every panel",所以预期结果是在每个方面(面板)都有你的 legend.plot。

一种解决方案是添加theme(legend.position="none")到您的基础图,然后使用grid.arrange()(library gridExtra) 绘制两个图。

library(gridExtra)
p=ggplot(df,aes(x,y,col=colors))+geom_point()+facet_wrap(~facets)+
         theme(legend.position="none") 

grid.arrange(p,legend.plot,ncol=2,widths=c(3/4,1/4))

在此处输入图像描述

于 2013-10-30T15:46:14.900 回答