ボックスプロットがこのプロットで順序付けされていない理由について、私は困惑しています:
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()
最高最低中央値 (左から右) に基づいて箱ひげ図を並べ替えるにはどうすればよいですか?