ggplot图例标题置于顶部中心

6
有没有一种方法可以将图例标题放在图例本身的上方和中心位置?
例如:
cons2 <- data.table(
value_date  = c(as.Date('2013-04-30'),as.Date('2013-04-30'),as.Date('2013-06-13'),as.Date('2013-06-13')),
ticker = c('AAPL','FTW','AAPL','FTW'),
discount = c(0.34,0.10,0.25,0.20),
b = c(0.40,0.55,.60,0.90),
yield = c(0.08,0.04, 0.06,0.03))


headers <- cons2[ticker == 'AAPL' & value_date == '2013-06-13']

p <- ggplot(cons2) 
p <- p + geom_point(aes(yield,b, size = discount, color=factor(value_date))) 
p <- p + guides(size = "none")
p <- p + scale_colour_manual(values = c("#1c2f80","#779438"))
p <- p + geom_text(data = headers, aes(yield, b, label=ticker), size = 4)
p <- p + geom_smooth(data = cons2[value_date == '2013-06-13'], aes(yield, b), method="lm", se=FALSE)
p <- p + geom_line(data = cons2, aes(yield, b, group = ticker))
p <- p + theme(legend.position="bottom")
p <- p + guides(colour=guide_legend(title.position="top"))
p
2个回答

9
您可以像这样使用title.hjust参数:
p <- p + guides(colour=guide_legend(title.position="top", 
                                     title.hjust =0.5))

enter image description here


0

我认为上面的内容已经过时了。以下是如何在ggplot > 3.0中居中图例的方法:

+ theme(legend.justification = "center")

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接