gpt4 book ai didi

r - 如何将 x 标签移动到 R 中 ggplot 中的分面标签上

转载 作者:行者123 更新时间:2023-12-04 19:28:58 24 4
gpt4 key购买 nike

我想将刻面标签 (3, 4, 5) 移到 x 值 (4, 6, 8) 的下方。
我目前的代码:

library(ggplot2)
ggplot(mtcars) + aes(factor(cyl), wt) +
geom_bar(stat = "summary", fun.y = "mean") +
facet_grid(~gear, switch = "x")

目前,它看起来像这样:

currently

我正在寻找看起来像这样的东西:

goal

最佳答案

library(ggplot2)
ggplot(mtcars) + aes(factor(cyl), wt) +
geom_bar(stat = "summary", fun.y = "mean") +
facet_grid(~gear, switch = "x") +
theme(strip.placement = "outside")

enter image description here

关于r - 如何将 x 标签移动到 R 中 ggplot 中的分面标签上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47678182/

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