我有一个包含重复行的数据集,我希望将它们编号如下:
原始数据集:
DF <- structure(list(pol_no = c(1L, 1L, 2L, 2L, 2L), os = c(23L, 33L,
45L, 56L, 45L), paid = c(45L, 67L, 78L, 89L, 78L)), .Names = c("pol_no",
"os", "paid"), class = "data.frame", row.names = c(NA, -5L))
看起来像这样:
> DF
pol_no os paid
1 1 23 45
2 1 33 67
3 2 45 78
4 2 56 89
5 2 45 78
我希望将 pol_no 中的重复项编号如下:
pol_no os paid count
1 23 45 1
1 33 67 2
2 45 78 1
2 56 89 2
2 45 78 3
提前非常感谢。
问候,
曼西
编辑:添加dput()
输出以使其可重现和固定格式。