为什么我的标题与ggplot保持一致?

时间:2017-01-05 03:28:45

标签: r ggplot2

在我看到的所有示例中,我看到ggplot()lab(title="")ggtitle=("")标题中心已对齐,但我必须将+ theme(plot.title = element_text(hjust = .5))添加到下面的代码中以对齐我的标题。我没有在示例中看到过,即标题是自动居中对齐的,为什么会这样?

ggplot(c4w4.12, aes( x = as.factor(year), y = value, label = round(value, 2))) + 
  geom_line( aes(y = value, color = variable, group = variable)) + geom_text() + 
  scale_color_discrete(name ="City", 
                       labels =c("Los Angles","Baltimore")) + 
  xlab("Year") + 
  ylab("Emission") + 
  ggtitle("Emissons from motor vehicles")

enter image description here

0 个答案:

没有答案