作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下情节:
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/
我有以下情节: ggplot(cars, aes(x = speed)) + geom_bar()+ labs(title="speed", subtitle="other in
我是一名优秀的程序员,十分优秀!