计算每个组的等级

计算每个组的等级

我有一个带有类型和值的df。我想在x中按type的顺序对它们进行排名,并给出其他几行的计数,行nx值比(pos列)高。

例如

df <- data.frame(type = c("a","a","a","b","b","b"),x=c(1,77,1,34,1,8))
# for type a row 3 has a higher x than row 1 and 2 so has a pos value of 2

我可以这样做:
library(plyr)
df <- data.frame(type = c("a","a","a","b","b","b"),x=c(1,77,1,34,1,8))
df <- ddply(df,.(type), function(x) x[with(x, order(x)) ,])
df <- ddply(df,.(type), transform, pos = (seq_along(x)-1) )

     type  x pos
1    a  1   0
2    a  1   1
3    a 77   2
4    b  1   0
5    b  8   1
6    b 34   2

但是这种方法没有考虑类型a第1行和第2行之间的联系。在联系具有相同值(例如)的情况下,获得输出的最简单方法是什么。
     type  x pos
 1    a  1   0
 2    a  1   0
 3    a 77   2
 4    b  1   0
 5    b  8   1
 6    b 34   2

最佳答案

ddply(df,.(type), transform, pos = rank(x,ties.method ="min")-1)

  type  x pos
1    a  1   0
2    a 77   2
3    a  1   0
4    b 34   2
5    b  1   0
6    b  8   1

关于r - 计算每个组的等级,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13915980/

10-10 00:17