ggplot:箱线图排序
如何在 ggplot 中对箱线图进行排序?
这就是我想要绘制的内容:
qplot( row.names(pcaDF),pcaDF[,1],data=pcaDF,geom="boxplot") + coord_flip()
这是 pcaDF 的结构
> str(pcaDF)
'data.frame': 108 obs. of 1 variable:
$ sort(plotdata[, 1], decreasing = F): num -5.89 -5.52 -4.66 -4.54 -3.92 ...
How do I sort a boxplot in ggplot?
Here's what I'm trying to plot:
qplot( row.names(pcaDF),pcaDF[,1],data=pcaDF,geom="boxplot") + coord_flip()
and here's the structure of pcaDF
> str(pcaDF)
'data.frame': 108 obs. of 1 variable:
$ sort(plotdata[, 1], decreasing = F): num -5.89 -5.52 -4.66 -4.54 -3.92 ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ggplot 中的排序由因子的水平调节。控制 df 中因子 A 的排序:
Sorting in ggplot is regulated by the levels in the factors. To control the sorting of factor: A in df:
这个问题在这里得到解答:
ggplot:如何指定多个箱线图的垂直顺序?
其他发现这个问题并想要使用 ggplot 重新排序(排序)其他数据的人可能会发现以下帖子很有用。
如何使用 ggplot / geom_bar 排序中断
如果其他搜索者仍然尝试使用关键字“order”代替“sort”会失败,因为从经验来看这似乎更富有成效。 :-)
This question is answered here:
ggplot: how to specify vertical order of multiple boxplots?
Others finding this question and wanting to reorder (sort) other data with ggplot may find the following post useful.
How to order breaks with ggplot / geom_bar
If other searchers still are lost trying using the keyword "order" in place of "sort" as this seems more fruitful from experience. :-)