如何仅保留列中的第一组重复项,如果有多个重复项。

huangapple go评论71阅读模式
英文:

How to keep only the first set of duplicate if there are multiple duplicates in a column

问题

clin.info$Sample.ID存在重复值。如果有多对重复值,我只想保留第一对。

n_occur <- data.frame(table(clin.info$Sample.ID))
multiple.duplicates <- n_occur[n_occur$Freq > 2,]

if(multiple.duplicates$Var1 %in% clin.info$Sample.ID){
  clin.info <- clin.info %>%
    group_by(Sample.ID) %>%
    distinct
}

错误回溯:

Error in if (multiple.duplicates$Var1 %in% clin.info$Sample.ID) { : 
  argument is of length zero

数据:

> dput(clin.info)
structure(list(Sample.ID = c("TCGA.B2.3924.01", "TCGA.B2.3924.01", 
"TCGA.B2.3924.01", "TCGA.B2.3924.01", "TCGA.B2.5635.01", "TCGA.B2.5635.01", 
"TCGA.B2.5635.01", "TCGA.B2.5635.01", "TCGA.B2.5635.01", "TCGA.B2.5635.01", 
"TCGA.A3.3357.01", "TCGA.A3.3357.01", "TCGA.A3.3367.01", "TCGA.A3.3367.01", 
"TCGA.A3.3387.01", "TCGA.A3.3387.01", "TCGA.B0.4698.01", "TCGA.B0.4698.01", 
"TCGA.B0.4710.01", "TCGA.B0.4710.01"), age = c("73", "73", "73", 
"73", "74", "74", "74", "74", "74", "74", "62", "62", "72", "72", 
"49", "49", "75", "75", "75", "75")), row.names = c(67L, 68L, 
69L, 70L, 71L, 72L, 73L, 74L, 75L, 76L, 1L, 2L, 3L, 4L, 5L, 6L, 
7L, 8L, 9L, 10L), class = "data.frame")

> dput(multiple.duplicates)
structure(list(Var1 = structure(6:7, levels = c("TCGA.A3.3357.01", 
"TCGA.A3.3367.01", "TCGA.A3.3387.01", "TCGA.B0.4698.01", "TCGA.B0.4710.01", 
"TCGA.B2.3924.01", "TCGA.B2.5635.01"), class = "factor"), Freq = c(4L, 
6L)), row.names = 6:7, class = "data.frame")

期望输出:

根据multiple.duplicates,有两个Sample.ID值有多于一个重复值。

因此,对于这两个Sample.ID,只保留在clin.info中的第一组重复值。

英文:

The clin.info$Sample.ID has duplicates. If there are more than one pair of duplicates, I want to take only the first pair.

n_occur &lt;- data.frame(table(clin.info$Sample.ID))
multiple.duplicates &lt;- n_occur[n_occur$Freq &gt; 2,]

if(multiple.duplicates$Var1 %in% clin.info$Sample.ID){
  clin.info &lt;- clin.info %&gt;% 
    group_by(Sample.ID) %&gt;% 
    distinct
}

Traceback:

Error in if (multiple.duplicates$Var1 %in% clin.info$Sample.ID) { : 
  argument is of length zero

Data:

&gt; dput(clin.info)
structure(list(Sample.ID = c(&quot;TCGA.B2.3924.01&quot;, &quot;TCGA.B2.3924.01&quot;, 
&quot;TCGA.B2.3924.01&quot;, &quot;TCGA.B2.3924.01&quot;, &quot;TCGA.B2.5635.01&quot;, &quot;TCGA.B2.5635.01&quot;, 
&quot;TCGA.B2.5635.01&quot;, &quot;TCGA.B2.5635.01&quot;, &quot;TCGA.B2.5635.01&quot;, &quot;TCGA.B2.5635.01&quot;, 
&quot;TCGA.A3.3357.01&quot;, &quot;TCGA.A3.3357.01&quot;, &quot;TCGA.A3.3367.01&quot;, &quot;TCGA.A3.3367.01&quot;, 
&quot;TCGA.A3.3387.01&quot;, &quot;TCGA.A3.3387.01&quot;, &quot;TCGA.B0.4698.01&quot;, &quot;TCGA.B0.4698.01&quot;, 
&quot;TCGA.B0.4710.01&quot;, &quot;TCGA.B0.4710.01&quot;), age = c(&quot;73&quot;, &quot;73&quot;, &quot;73&quot;, 
&quot;73&quot;, &quot;74&quot;, &quot;74&quot;, &quot;74&quot;, &quot;74&quot;, &quot;74&quot;, &quot;74&quot;, &quot;62&quot;, &quot;62&quot;, &quot;72&quot;, &quot;72&quot;, 
&quot;49&quot;, &quot;49&quot;, &quot;75&quot;, &quot;75&quot;, &quot;75&quot;, &quot;75&quot;)), row.names = c(67L, 68L, 
69L, 70L, 71L, 72L, 73L, 74L, 75L, 76L, 1L, 2L, 3L, 4L, 5L, 6L, 
7L, 8L, 9L, 10L), class = &quot;data.frame&quot;)

&gt; dput(multiple.duplicates)
structure(list(Var1 = structure(6:7, levels = c(&quot;TCGA.A3.3357.01&quot;, 
&quot;TCGA.A3.3367.01&quot;, &quot;TCGA.A3.3387.01&quot;, &quot;TCGA.B0.4698.01&quot;, &quot;TCGA.B0.4710.01&quot;, 
&quot;TCGA.B2.3924.01&quot;, &quot;TCGA.B2.5635.01&quot;), class = &quot;factor&quot;), Freq = c(4L, 
6L)), row.names = 6:7, class = &quot;data.frame&quot;)

Expected output:

Based on multiple.duplicates, there are two Sample.ID values with more than one duplicate.

Hence, for these two Sample.ID, keep only the first set of duplicate in clin.info.

答案1

得分: 2

dplyr::slice_head(clin.info, n = 2, by = Sample.ID)
#>          Sample.ID age
#> 1  TCGA.B2.3924.01  73
#> 2  TCGA.B2.3924.01  73
英文:
dplyr::slice_head(clin.info, n = 2, by = Sample.ID)
#&gt;          Sample.ID age
#&gt; 1  TCGA.B2.3924.01  73
#&gt; 2  TCGA.B2.3924.01  73
#&gt; 3  TCGA.B2.5635.01  74
#&gt; 4  TCGA.B2.5635.01  74
#&gt; 5  TCGA.A3.3357.01  62
#&gt; 6  TCGA.A3.3357.01  62
#&gt; 7  TCGA.A3.3367.01  72
#&gt; 8  TCGA.A3.3367.01  72
#&gt; 9  TCGA.A3.3387.01  49
#&gt; 10 TCGA.A3.3387.01  49
#&gt; 11 TCGA.B0.4698.01  75
#&gt; 12 TCGA.B0.4698.01  75
#&gt; 13 TCGA.B0.4710.01  75
#&gt; 14 TCGA.B0.4710.01  75

<sup>Created on 2023-05-28 with reprex v2.0.2</sup>

Input data:

clin.info &lt;-
structure(list(Sample.ID = c(&quot;TCGA.B2.3924.01&quot;, &quot;TCGA.B2.3924.01&quot;, 
&quot;TCGA.B2.3924.01&quot;, &quot;TCGA.B2.3924.01&quot;, &quot;TCGA.B2.5635.01&quot;, &quot;TCGA.B2.5635.01&quot;, 
&quot;TCGA.B2.5635.01&quot;, &quot;TCGA.B2.5635.01&quot;, &quot;TCGA.B2.5635.01&quot;, &quot;TCGA.B2.5635.01&quot;, 
&quot;TCGA.A3.3357.01&quot;, &quot;TCGA.A3.3357.01&quot;, &quot;TCGA.A3.3367.01&quot;, &quot;TCGA.A3.3367.01&quot;, 
&quot;TCGA.A3.3387.01&quot;, &quot;TCGA.A3.3387.01&quot;, &quot;TCGA.B0.4698.01&quot;, &quot;TCGA.B0.4698.01&quot;, 
&quot;TCGA.B0.4710.01&quot;, &quot;TCGA.B0.4710.01&quot;), age = c(&quot;73&quot;, &quot;73&quot;, &quot;73&quot;, 
&quot;73&quot;, &quot;74&quot;, &quot;74&quot;, &quot;74&quot;, &quot;74&quot;, &quot;74&quot;, &quot;74&quot;, &quot;62&quot;, &quot;62&quot;, &quot;72&quot;, &quot;72&quot;, 
&quot;49&quot;, &quot;49&quot;, &quot;75&quot;, &quot;75&quot;, &quot;75&quot;, &quot;75&quot;)), row.names = c(67L, 68L, 
69L, 70L, 71L, 72L, 73L, 74L, 75L, 76L, 1L, 2L, 3L, 4L, 5L, 6L, 
7L, 8L, 9L, 10L), class = &quot;data.frame&quot;)

答案2

得分: 0

我认为你可以使用以下代码:

dedup <- clin.info %>%
  group_by(Sample.ID) %>%
  filter(n() > 2) %>%
  distinct() %>% ungroup()

if (dim(dedup)[1] > 0) {
    result <- clin.info %>%
    filter(!(Sample.ID %in% dedup$Sample.ID)) %>%
    bind_rows(dedup)
}
英文:

I think you can use below code:

dedup &lt;- clin.info %&gt;%
  group_by(Sample.ID) %&gt;%
  filter(n() &gt; 2) %&gt;%
  distinct() %&gt;% ungroup()

if (dim(dedup)[1] &gt;0) {
    result &lt;- clin.info %&gt;%
    filter(!(Sample.ID  %in% dedup$Sample.ID)) %&gt;%
    bind_rows(dedup)
}

huangapple
  • 本文由 发表于 2023年5月28日 22:17:15
  • 转载请务必保留本文链接:https://go.coder-hub.com/76351934.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定