这是我的数据框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
'中位数value
和score2
的中位数value
之间的差异排序。这可能是reorder()
吗?