我想把我的情节传说放在情节的内部,在一个方面的第一个情节。
以下是一些示例代码:
df=data.frame( x=runif(10),y=runif(10),facet=rep(c("a","b"),5),color=rep(c("red","blue"),5)) ggplot(data=df,aes(x=x,y=y,color=color))+ geom_point()+ facet_wrap(~facet,ncol=1)
这是由此产生的情节:
这里大概是我想要的样子:
感谢您的任何帮助,您可以提供!
解决方法
假设你的情节保存为p
p + opts( legend.position = c(0.9,0.6),# c(0,0) bottom left,c(1,1) top-right. legend.background = theme_rect(fill = "white",colour = NA) )
如果您希望图例背景部分透明,请将填充更改为例如“#ffffffaa”。