我正在调整ggplot2标签的字体大小,以使它们在大格式中更具可读性。除了图例标题之外,这非常有效。这由以下代码说明:
library(ggplot2)
p <- ggplot(diamonds, aes(carat, price, colour=cut)) + geom_point() +
xlab("Carat") +
ylab("Price") +
opts(legend.position=c(0.85, 0.3)) +
opts(axis.title.x=theme_text(size=16)) +
opts(axis.title.y=theme_text(size=16, angle=90)) +
opts(plot.title=theme_text(size=20)) +
opts(legend.text=theme_text(size=14)) +
opts(legend.title=theme_text(size=14)) +
opts(title="Diamond Prices")
p
重新调整大小的图例标题不再在图例框中正确对齐,而是向左突出。对于较长的标题,效果甚至更糟。我已经尝试为vjust和hjust参数定义自定义值,但没有明显的响应。
有没有办法调整重新调整大小的图例标题的对齐方式?
答案 0 :(得分:22)
如果您使用的是ggplot 0.9.1版本,则可用于更改图例标题的位置和大小
p + theme(legend.position=c(0.85, 0.3),legend.title=element_text(size=14))
答案 1 :(得分:15)