gpt4 book ai didi

r - 在 theme_minimal() 中找到中心标题和副标题

转载 作者:行者123 更新时间:2023-12-05 03:59:38 26 4
gpt4 key购买 nike

我有以下情节:

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() 中居中标题和副标题有什么建议吗?

最佳答案

您的猜测是正确的,在您指定 theme 之后添加 theme_minimal 会覆盖设置。因此,您需要更改 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-calls)时,您的绘图显示会在顶部绘制最后绘制的值。

关于r - 在 theme_minimal() 中找到中心标题和副标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56973521/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com