0

这个主题几乎涵盖了 R 中图例的所有属性。我想知道如何增加图例和主图之间的间距。

4

1 回答 1

5

按照您提供的链接中的示例:

library(ggplot2)
xy <- data.frame(x=1:10, y=10:1, type = rep(LETTERS[1:2], each=5))
plot <- ggplot(data = xy)+
geom_point(aes(x = x, y = y, color=type))

在此处输入图像描述

plot <- plot + theme(legend.box.margin = margin(0, 0, 0, 20))

在此处输入图像描述

于 2015-11-09T19:17:21.640 回答