如何在一个图中缩小两个参考线之间的间隙。在下面的示例中,两个指南来自颜色和大小比例,我想更改两者之间的间隙,以便标题“大小”正好位于图例点下方1.设计方面,它可能不会感觉在这个例子中,但在我的实际应用程序中它。
df=data.frame(x=rnorm(100),y=rnorm(100),color=factor(rbinom(100,1,0.5)),size=runif(100))
ggplot(df,aes(x=x,y=y,color=color,size=size)) + geom_point()
编辑:这是情节。我想通过绿线和箭头突出显示间隙。
答案 0 :(得分:17)
现在似乎可以使用主题参数:
ggplot(df,aes(x=x,y=y,color=color,size=size)) + geom_point() +
theme(legend.spacing.y = unit(-0.5, "cm"))
您还可以尝试降低图例的边距:
legend.margin = margin(-0.5,0,0,0, unit="cm")
或更早
legend.margin=unit(0, "cm")
答案 1 :(得分:5)
我尝试播放以自定义legend
或guide
参数但我找不到解决方案。我希望使用ggplot2设置提供解决方案。
这里有2个基于gtable
和grid
包的解决方案。
对于gtable
解决方案,代码的灵感来自于此question。
library(gtable)
# Data transformation
data <- ggplot_build(p)
gtable <- ggplot_gtable(data)
# Determining index of legends table
lbox <- which(sapply(gtable$grobs, paste) == "gtable[guide-box]")
# changing the space between the 2 legends: here -0.5 lines
guide <- gtable$grobs[[lbox]]
gtable$grobs[[lbox]]$heights <- unit.c(guide$heights[1:2],
unit(-.5,'lines'), ## you can the GAP here
guide$heights[4:5])
# Plotting
grid.draw(gtable)
类似地使用grid
包(我们在图例的视口中重绘)
pp <- grid.get('guide',grep=T)
depth <- downViewport(pp$wrapvp$name)
guide <- grid.get('guide',grep=T)
grid.rect(gp=gpar(fill='white'))
guide$heights <- unit.c(guide$heights[1:2],unit(-0.2,'lines'),guide$heights[4],unit(0.1,'lines'))
grid.draw(guide)
upViewport(depth)