theme_minimal()中的中心标题和字幕nd

时间:2019-07-10 14:59:41

标签: r ggplot2

我有以下情节:

ggplot(cars, aes(x = speed)) + 
  geom_bar()+
  labs(title="speed",
       subtitle="other info")+
  theme(plot.title = element_text(hjust = 0.5),
        plot.subtitle = element_text(hjust = 0.5))

主题层将情节标题和副标题居中。

但是,当我添加theme_minimal()时,居中不再适用。 我猜theme_minimal会覆盖主题规范。

ggplot(cars, aes(x = speed)) + 
  geom_bar()+
  labs(title="speed",
       subtitle="other info")+
  theme(plot.title = element_text(hjust = 0.5),
    plot.subtitle = element_text(hjust = 0.5))+
 theme_minimal()

尝试在最小主题中指定标题和字幕位置并不是我可能采取的方式:

ggplot(cars, aes(x = speed)) + 
  geom_bar()+
  labs(title="speed",
       subtitle="other info")+
  theme_minimal(plot.title = element_text(hjust = 0.5),
        plot.subtitle = element_text(hjust = 0.5))

有没有建议如何在theme_minimal()中将标题和副标题居中?

1 个答案:

答案 0 :(得分:0)

您的猜测是正确的,并且在指定theme_minimal后添加theme将覆盖设置。因此,您需要更改ggplot呼叫的顺序。

ggplot(cars, aes(x = speed)) + 
  geom_bar() +
  labs(title = "speed", subtitle = "other info") +
  theme_minimal() +
  theme(plot.title = element_text(hjust = 0.5),
        plot.subtitle = element_text(hjust = 0.5))

这来自ggplot中的分层,当您指定例如色标两次,然后您会收到警告,说第一个将被覆盖。同样,您的绘图显示会在顶部绘制值,当您绘制多个图层(即多个geom_point-调用)时,这些值最后被绘制。