Assign unique value for duplicated rows

2020-07-11 05:04发布

I want to assign the value for each duplicated row by ID in R

df <- data.frame(ID=c(1,1,1,2,2,2,2,2,3,3,4),
            Code = c("A","A","A","B","B","C","C","D","A","A","C"))
> df
   ID Code
1   1    A
2   1    A
3   1    A
4   2    B
5   2    B
6   2    C
7   2    C
8   2    D
9   3    A
10  3    A
11  4    C

I want the output like this,check duplicated by ID, then assign the second duplicate _1 and so on...

   ID Code Code_n
1   1    A      A
2   1    A    A_1
3   1    A    A_2
4   2    B      B
5   2    B    B_1
6   2    C      C
7   2    C    C_1
8   2    D      D
9   3    A      A
10  3    A    A_1
11  4    C      C

标签: r
2条回答
爱情/是我丢掉的垃圾
2楼-- · 2020-07-11 05:48

You can use make.unique from base R as follows,

with(df, ave(as.character(Code), ID, FUN = make.unique))
#[1] "A"   "A.1" "A.2" "B"   "B.1" "C"   "C.1" "D"   "A"   "A.1" "C"
查看更多
淡お忘
3楼-- · 2020-07-11 05:52

Or using dplyr

library(dplyr)
df %>% 
    group_by(ID) %>% 
    mutate(Code_n = make.unique(as.character(Code)))
查看更多
登录 后发表回答