如何使用ggplot2在图的底部给出标题

时间:2016-06-07 04:41:51

标签: r ggplot2

对不起我的基本问题。

我想在情节的底部给出标题。我怎么能这样做?

p1 <-ggplot(data=df, aes(x=variable, y=value, fill=variable)) + 
  geom_boxplot() + theme_bw() +
 theme(legend.position="none") + ylim(0,10) +  ggtitle("My Title") +
  labs(x="", y="y axis") + theme(panel.grid.major = element_line(colour = "black")) + theme(axis.title.y = element_text(size = 22,face="bold"))+ theme(plot.title=element_text(size=30,face="bold")) + theme(axis.text.y = element_text(size=18)) + theme(axis.text.x = element_text(size=22,face="bold"))  + scale_fill_manual(values = c("darkgreen","darkmagenta"))

1 个答案:

答案 0 :(得分:-1)

使用

+theme(plot.title = element_text(vjust = 10))

或者看看这个页面:

Plot title at bottom of plot using ggplot2