在我看到的所有示例中,我看到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")