计算每组某些值的四分位数

时间:2017-09-17 13:13:19

标签: r quartile

我想创建一个名为百分位数的变量,每组具有一定值的四分位数。我有以下数据集,我想创建最后一个变量percentile

  id group value
1  1     1     1
2  2     1     2
3  3     1     3
4  4     1     4
5  5     2    10
6  6     2    20
7  7     2    30
8  8     2    40

以下是预期结果。

id group value percentile
1  1     1     1
2  1     2     2
3  1     3     3 
4  1     4     4
5  2     10    1
6  2     20    2
7  2     30    3
8  2     40    4

到目前为止,我已使用库dplyr尝试了以下内容:

df <- df  %>% group_by(group) %>% within(df, percentile <- as.integer(cut(value, quantile(value, probs=0:4/4), 
                                                              include.lowest=TRUE)))

但它似乎不起作用。它不会产生任何称为百分位数的变量,也不会给我一个错误

1 个答案:

答案 0 :(得分:1)

这是你需要的吗?:

> df$percentile = ave(df$value, df$group, FUN=function(x) ecdf(x)(x))

re:如果你想要4,你可以:

df$percentile = factor(df$percentile)
levels(df$percentile) <- 1:4