theme_bw() 或 theme_classic() 中的位置图例 "bottom"
position legend "bottom" in theme_bw() or theme_classic()
我想在不使用 theme() 的情况下绘制一些东西,而是 theme_classic()。
如何将图例的位置更改为“底部”?
谢谢!
我也很难回答你的问题; @JonSpring 提供了有价值的代码和解释。
示例代码:
ggplot(diamonds, mapping = aes(x = clarity)) +
geom_bar(aes(fill = cut)) +
labs(x = NULL, y = NULL) +
guides(x = "none", y = "none")+
theme_classic()+
theme(legend.position = 'bottom', legend.direction = "horizontal")
输出:
我想在不使用 theme() 的情况下绘制一些东西,而是 theme_classic()。 如何将图例的位置更改为“底部”?
谢谢!
我也很难回答你的问题; @JonSpring 提供了有价值的代码和解释。
示例代码:
ggplot(diamonds, mapping = aes(x = clarity)) +
geom_bar(aes(fill = cut)) +
labs(x = NULL, y = NULL) +
guides(x = "none", y = "none")+
theme_classic()+
theme(legend.position = 'bottom', legend.direction = "horizontal")
输出: