gpt4 book ai didi

r - "Reversed"在 ggplot2 中使用 fct_infreq()

转载 作者:行者123 更新时间:2023-12-03 13:31:51 25 4
gpt4 key购买 nike

我用过 fct_infreq()按频率重新排序 mpg 的模型因子水平。
但是,提供的代码会生成一个图,其中计数最少的因子将出现在图的顶部。我想以相反的方式使用它,以便最常见的因素出现在顶部。有没有办法做到这一点?
ggplot(mpg) +
geom_bar(mapping = aes(x = fct_infreq(model))) +
coord_flip()

最佳答案

ggplot(mpg) +
geom_bar(mapping = aes(x = fct_rev(fct_infreq(model)))) +
coord_flip()
enter image description here
顺便说一句, as of ggplot 3.3.0 from March 2020 , coord_flip在大多数情况下不再需要——您可以直接映射到您想要的轴:
ggplot(mpg) +
geom_bar(mapping = aes(y = fct_rev(fct_infreq(model))))

关于r - "Reversed"在 ggplot2 中使用 fct_infreq(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52938858/

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