Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在数据框中,我有一列包含调查问卷的总分。我想添加一列,对于每个总分,都有相对于数据分布的相对百分位数。我怎样才能在 R 中做到这一点?
设为data.frame x,x$score设为总分列。您可以添加一列百分位数
x
x$score
x$percentile <- ecdf(x$score)(x$score)
现在 data.framex有一个额外的 column percentile,这就是你想要的。
percentile