gpt4 book ai didi

在 ggplot2 中旋转 x 轴标签和更改主题

转载 作者:行者123 更新时间:2023-12-02 07:18:22 26 4
gpt4 key购买 nike

有没有办法在 ggplot 图中旋转 x 轴标签并同时更改主题?

如果我这样做,我可以旋转 x 轴标签:

ToothGrowth$dose <- as.factor(ToothGrowth$dose)
ggplot(ToothGrowth, aes(x=dose, y=len)) +
geom_boxplot() +
theme(axis.text.x = element_text(angle = 90, hjust = 1))

但是如果我添加一个主题,旋转将不起作用:
ToothGrowth$dose <- as.factor(ToothGrowth$dose)
ggplot(ToothGrowth, aes(x=dose, y=len)) +
geom_boxplot() +
theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
theme_minimal()

我尝试在 theme_minimal() 中添加旋转功能,但这也不起作用。

谢谢。

最佳答案

那是因为订单:theme_minimal正在追踪 theme覆盖后者。使用

ggplot(ToothGrowth, aes(x = dose, y = len)) + 
geom_boxplot() + theme_minimal() +
theme(axis.text.x = element_text(angle = 90, hjust = 1))



enter image description here

关于在 ggplot2 中旋转 x 轴标签和更改主题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54550444/

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