gpt4 book ai didi

Reorder() 未正确重新排序 ggplot 中的因子变量

转载 作者:行者123 更新时间:2023-12-03 02:37:59 27 4
gpt4 key购买 nike

我很困惑为什么箱线图在此图中没有排序:

set.seed(200)
x <- data.frame(country=c(rep('UK', 10),
rep("USA", 10),
rep("Ireland", 5)),
wing=c(rnorm(25)))

ggplot(x, aes(reorder(country, wing, median), wing)) + geom_boxplot()

enter image description here

如何根据最高-最低中位数(从左到右)对箱线图进行排序?

最佳答案

因为你没有将其设为有序因子。尝试一下

ggplot(x, aes(reorder(country, wing, median, order=TRUE), wing)) + geom_boxplot()

enter image description here

关于Reorder() 未正确重新排序 ggplot 中的因子变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16622979/

27 4 0
文章推荐: html - 如何使
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com