ggplot2:调整图例中的符号大小


71

如何更改图例中符号的大小?我检查了的文档,theme但没有找到答案。

这是一个例子:

library(ggplot2);library(grid)
set.seed(1000)
x <- 1:6
mu <- sin(x)
observed <- mu + rnorm(length(x), 0, 0.5*sd(mu))
data <- data.frame(
  t=rep(x, 2), 
  value=c(mu, observed) - min(mu, observed) + 0.5, 
  class = rep(c("mu", "observed"), each=length(x)))
mu <- data$value[1:length(x)]
observed <- data$value[1:length(x) + length(x)]
mu.min <- mu - 3 * 0.5 * sd(mu)
mu.max <- mu + 3 * 0.5 * sd(mu)
g <- ggplot(data=data)
g <- g + geom_point(aes(x=value, y=t, shape=class, size=24)) + scale_size(guide="none")
g <- g + scale_shape(name="", labels=expression(paste(S[u](t), ", the observation at time ", t), paste(mu[u](t), ", the mean of ", tilde(S)[u](t), "          ")))
stat_function.color <- gray(0.5)
g <- g + geom_segment(aes(y=1:6, yend=1:6, x=mu.min, xend=mu.max, linetype="2", alpha = 1), color=stat_function.color) + scale_alpha(guide="none") + scale_linetype(name= "", labels=expression(paste("probability density function (pdf) of ", tilde(S)[u], " at time ", t)))
for(i in 1:length(x)) {
  g <- g + stat_function(fun=function(x, i) {
    ifelse( x <= mu.max[i] & x >= mu.min[i], dnorm(x, mu[i], sd(mu)) + i, NA)
    }, color=stat_function.color, args=list(i=i))
}
background.color <- gray(0.75)
g <- g + theme(
  axis.text=element_blank(),
  title=element_text(size=rel(1.5)),
  legend.text=element_text(size=rel(1.5)),
  legend.position="top",
  legend.direction="vertical",
#   legend.key.size = unit(2, "cm"),
  panel.background=element_rect(fill=background.color), 
  panel.grid.major=element_line(color=background.color),
  panel.grid.minor=element_line(color=background.color)
  ) + coord_flip()
plot(g)

Answers:


82

您可以使用的override.aes参数手动进行此类更改guide_legend()

g <- g + guides(shape = guide_legend(override.aes = list(size = 5)))
print(g)

@Ibo:你确定吗?如果您在图例中使用了色标,那么您的示例代码看起来就可以工作,我的示例是使用形状标尺,就像原始问题中那样。AFAIK如果您要修改的形状比例尺仍然可以使用。在这一点上,我希望Duc_Hokie的建议使用主题选项。
Marius

78

您应该使用:

theme(legend.key.size = unit(3,"line"))

4
恕我直言,这是更合适的答案,因为它使用的theme是问题中提到的内容。
约瑟夫·埃斯

36
此代码增加了符号周围的区域,而不是符号本身。指南代码更合适。
LindsayLucas

我无法使其适用于较小的值,例如unit(0.1, "line")
PatrickT

2
但这实际上是实现我们大多数人想要执行的操作的代码...
森林生态学家,

这对我有用。而接受的答案没有。
jdmartin86

36

从R版本3.2.2开始,Marius的答案对我不起作用。您仍然可以guide_legend()使用相同的override.eas参数进行调用,但是需要指定color而不是shape在wrapper函数中指定。

因此,如果您正在运行R的更高版本,请尝试以下操作:

g + guides(color = guide_legend(override.aes = list(size=5)))

编辑

正如@Ibo在评论中指出的,这可能是由于ggplot对象中的色标所致。如果ggplot对象包含一个色标,则size=5必须在颜色上设置大小()的映射。


6
我认为对您不起作用的原因是因为您的绘图中有色标而不是形状标尺。Marius的答案会更改形状图例中形状的大小。您的代码行更改了色标的图例形状大小
Ibo

8

如果要独立更改图例的2个组件的大小,会比较麻烦,但是可以通过使用grid包手动编辑图的各个组件来完成。

基于此SO答案的示例:

set.seed(1)
dat <- data.frame(x = runif(n = 100),
                  x2 = factor(rep(c('first', 'second'), each = 50)))
set.seed(1)
dat$y = 5 + 1.8 * as.numeric(dat$x2) + .3 * dat$x + rnorm(100)

# basic plot
g <- ggplot(data = dat,
       aes(x = x, y = y, color = x2))+
   theme_bw()+
   geom_point()+
   geom_smooth(method = 'lm')

在此处输入图片说明

# make the size of the points & lines in the legend larger
g + guides(color = guide_legend(override.aes = list(size = 2)))

在此处输入图片说明

# Make JUST the legend points larger without changing the size of the legend lines:
# To get a list of the names of all the grobs in the ggplot
g
grid::grid.ls(grid::grid.force())

# Set the size of the point in the legend to 2 mm
grid::grid.gedit("key-[-0-9]-1-1", size = unit(4, "mm"))

# save the modified plot to an object
g2 <- grid::grid.grab()
ggsave(g2, filename = 'g2.png')

在此处输入图片说明

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.