创建以下图会导致图例垂直放置在右侧,而不是水平放置在底部,如对 opts() 的调用所示:

dat <- data.frame(x = runif(10), y = runif(10),
                  grp = rep(letters[1:2],each = 5))

ggplot(data = dat, aes(x = x, y = y, colour = grp)) +
  geom_point() +
  opts(legend.position = "bottom", legend.direction = "horizontal") +
  theme_bw()

r - 使用 opts() 更改图例位置/方向无效-LMLPHP

如何在正确的位置获得图例?

最佳答案

问题是 theme_bw() 放在调用 opts() 之后,并重置了一些默认值。只需将 theme_bw() 放在 opts() 之前:

ggplot(data = dat, aes(x = x, y = y, colour = grp)) +
  geom_point() +
  theme_bw() +
  opts(legend.position = "bottom", legend.direction = "horizontal")

注意 :从 0.9.2 版本开始 optsreplaced 变为 0x2518131231
theme(legend.position = "bottom", legend.direction = "horizontal")

r - 使用 opts() 更改图例位置/方向无效-LMLPHP

关于r - 使用 opts() 更改图例位置/方向无效,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7128573/

10-12 14:05