gpt4 book ai didi

r - 如何创建具有依赖于 r 中其他列的值的列?

转载 作者:行者123 更新时间:2023-12-04 08:39:13 26 4
gpt4 key购买 nike

我有一个临床试验数据集,我希望为其创建一列基因 - 与它们出现的临床试验相匹配的基因。
我的数据集看起来像:

Study ID   Title                             Drug        
1 Study of placement BRCA2-drug
2 Study of ACE Gene1-drug
3 Another ACE study Gene2-drug
4 Study of NOS3 and ACE ACE-drug
(只是要注意在我的真实数据中,我有更多的列可以出现基因名称)
然后我有一个基因列表:
Gene
ACE
BRCA2
NOS3
HER2
我希望在我的第一个匹配基因的数据集中创建一列进行研究,输出例如:
Gene      Study ID      Title                             Drug        
BRCA2 1 Study of placement BRCA2-drug
ACE 2 Study of ACE Gene1-drug
ACE 3 Another ACE study Gene2-drug
ACE, NOS3 4 Study of NOS3 and ACE ACE-drug
我不确定从哪里开始,尤其是制作一列,如果该行中出现多个基因,则该列还允许该行容纳多个基因。我一直在尝试使用 dplyr::group_by()但还没有走多远。
输入数据:
#Clinical trials data:
structure(list(StudyID = 1:4, Title = c("Study of placement",
"Study of ACE", "Another ACE study", "Study of NOS3 and ACE"), Drug = c("BRCA2-drug",
"Gene1-drug", "Gene2-drug","ACE-drug")), row.names = c(NA, -4L), class = c("data.table",
"data.frame"))

#Gene list:
structure(list(Gene = c("ACE", "NOS3", "HER2", "BRCA1")), row.names = c(NA,
-4L), class = c("data.table", "data.frame"))

最佳答案

您可以创建一个将所有基因组合在一起的模式。从多列中提取存在的基因并将它们组合成一列。

library(dplyr)
pat <- paste0(gene_list$Gene, collapse = '|')

trials %>%
mutate(across(.fns = ~str_extract_all(., pat), .names = '{col}_new')) %>%
rowwise() %>%
mutate(Gene = toString(unique(unlist(c_across(ends_with('_new')))))) %>%
select(-ends_with('new'))

# StudyID Title Drug Gene
# <int> <chr> <chr> <chr>
#1 1 Study of placement BRCA2-drug BRCA2
#2 2 Study of ACE Gene1-drug ACE
#3 3 Another ACE study Gene2-drug ACE
#4 4 Study of NOS3 and ACE ACE-drug NOS3, ACE
请注意,您的数据没有 "BRCA2" .我改了 "BRCA1""BRCA2" .

关于r - 如何创建具有依赖于 r 中其他列的值的列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64646939/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com