如何在ggplot2 boxplot中对(variable1 - variable2)重新排序()?

时间:2015-10-28 19:44:03

标签: r ggplot2 boxplot

这是我的数据框data.melt

Id,Group,variable,value
1,a,score1,56
1,a,score2,23
2,b,score1,15
2,b,score2,45
3,c,score1,62
3,c,score2,95
4,d,score1,75
4,d,score2,11

这是我的boxplot生成脚本

ggplot(data.melt) + 
  geom_boxplot(
    aes(
      x=Group,
      y=value,
      fill=variable
    )
  )

我知道我可以为reorder()添加x=功能,但我不确定如何按照我的要求订购图表。

我希望按score1'中位数valuescore2的中位数value之间的差异排序。这可能是reorder()吗?

0 个答案:

没有答案