调整图例与主图的间距

时间:2015-11-09 18:41:09

标签: r ggplot2 legend legend-properties

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

1 个答案:

答案 0 :(得分: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))

enter image description here

library(grid) # For the function unit
plot <- plot + theme(legend.margin = unit(3, "cm"))

enter image description here