有人知道如何在ggplot中更改图例标题的位置吗?
p <- p + opts(legend.position = 'bottom',legend.direction = 'horizontal')
但现在我希望标题位于图例的左侧而不是上方.我看了下面的地方,但无法找到它或弄清楚:
https://github.com/hadley/ggplot2/wiki/Legend-Attributes
http://had.co.nz/ggplot2/book/toolBox.r
任何帮助将不胜感激
解决方法
使用
transition guide到版本0.9作为参考,您可以尝试以下操作(假设您要更改颜色图例的标题位置):
library(scales) + guides(colour = guide_legend(title.position = "left"))
对于连续缩放,您可以使用guide_colorbar而不是guide_legend.
只是提供一个具体的例子来证明我不只是在做这件事,
library(ggplot2) library(scales) p <- ggplot(mtcars,aes(wt,mpg)) p + geom_point(aes(colour = qsec)) + guides(colour = guide_legend(title.position = "right"))