gpt4 book ai didi

r - 同时按多列对R中的数据框进行排序

转载 作者:行者123 更新时间:2023-12-01 09:25:37 26 4
gpt4 key购买 nike

所以,我有一个大数据框(7000 行),排列如下:

head(mx)

Stem Progenitor Astrocyte Neuron genename
ENSRNOG00000000007 0.0517698 0.700234 0.11753300 4.591050 Gad1
ENSRNOG00000000010 0.0536043 0.471518 0.00741803 2.280760 Cbln1
ENSRNOG00000000012 0.0163017 0.285178 1.89533000 0.268405 Tcf15
ENSRNOG00000000024 2.7904200 0.703727 13.96940000 4.944650 HEBP1
ENSRNOG00000000028 2.5059900 2.563040 4.83952000 0.840013 Nde1
ENSRNOG00000000029 1.6204500 2.928300 15.58360000 1.750350 Myh11

我需要对这个数据框进行排序,使其按前四列中的 any 值从高到低排序。因此,例如,这 5 行的排序将是:

                        Stem Progenitor   Astrocyte   Neuron genename
ENSRNOG00000000029 1.6204500 2.928300 15.58360000 1.750350 Myh11
ENSRNOG00000000024 2.7904200 0.703727 13.96940000 4.944650 HEBP1
ENSRNOG00000000028 2.5059900 2.563040 4.83952000 0.840013 Nde1
ENSRNOG00000000007 0.0517698 0.700234 0.11753300 4.591050 Gad1
ENSRNOG00000000010 0.0536043 0.471518 0.00741803 2.280760 Cbln1
ENSRNOG00000000012 0.0163017 0.285178 1.89533000 0.268405 Tcf15

我知道我可以使用如下命令一次按一列对数据框进行排序:

mx <- mx[with(mx, order(-Stem, -Progenitor, -Astrocyte, -Neuron)),]

但是,在上面的示例中,这会将 Tcf15 置于 Gad1 和 Cbln1 之上。有没有办法按四列中的任何一列中的最高值排序?我可以编写一些脚本来手动遍历数据框并使用 Rbind 排序到一个新的数据框,但这非常低效,我相信有更好的方法来做到这一点。

最佳答案

使用 pmax

对四列中的最大值进行排序
mx <- mx[with(mx, order(-pmax(Stem, Progenitor, Astrocyte, Neuron))),]

关于r - 同时按多列对R中的数据框进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25100376/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com