我有df
看起来像这样:
> df
Names Symbol GeneID Description Paths Colors
IL-1 CP1 3553 Receptor Path1|Path2|Path5 Green|Blue|Pink
IL-6 CFT5 3569 Receptor Path3|Path1|Path2 Red|Green|Blue
TNF DFR4 7124 Receptor Path4|Path3|Path1 Yellow|Red|Green
CCL2 FGTZ 6347 Receptor Path4|Path5|Path2 Yellow|Pink|Blue
IL-1 SED 3552 Receptor Path6|Path5|Path3 Purple|Pink|Red
PAI1 SWA 5054 Receptor Path1 Green
IL-12 SSS 3593 Receptor Path1|Path2 Green|Blue
IL-8 SDE 3576 Receptor Path1|Path3|Path5 Green|Red|Pink
CTGF SDFR 1490 Receptor Path4|Path5|Path1 Yellow|Pink|Green
TGF FDGT 7046 Receptor Path5|Path3 Pink|Red
我希望将名为cols
和Paths
的{{1}}分开,然后计算每个Colors
在名为Path#
的列上出现的次数。因此,我可以获得与下面显示的Paths
相似的df
,其中Path1
出现7次,其对应的颜色为Green
。 Path5
出现5次,这就是为什么以相应的颜色(pink
)显示在第二位的原因等等。
> df2
Paths Colors
Path1 Green
Path5 Pink
Path3 Red
Path2 Blue
Path4 Yellow
Path6 Purple
我尝试使用此代码执行操作:
Paths <- data.frame(do.call('rbind', strsplit(as.character(df$paths), '|', fixed = TRUE)))
df2 <- table(unlist(Paths))
df2 <- data.frame(sort(df2, decreasing = T))
但这只是一行,而不是将Paths
和Colors
cols拆分并分开。
有什么建议吗?最好使用base R
答案 0 :(得分:0)
您的问题分为两部分。首先,我们需要将数据重新整形为整齐的格式:每个路径一行,并带有相应的颜色。
df %>% tidyr::separate_rows(Paths, Colors, sep = "\\|")
Names Symbol GeneID Description Paths Colors
1 IL-1 CP1 3553 Receptor Path1 Green
2 IL-1 CP1 3553 Receptor Path2 Blue
3 IL-1 CP1 3553 Receptor Path5 Pink
...
现在我们需要计算最流行的路径:
counts <- df %>% count(Paths) %>% arrange(desc(n))
# A tibble: 6 x 2
Paths n
<chr> <int>
1 Path1 7
2 Path5 6
3 Path3 5
4 Path2 4
5 Path4 3
6 Path6 1
最后,我们可以加入相应的颜色并删除n
列。这是一种方式。
counts %>% inner_join(df) %>% distinct(Paths, Colors)
Joining, by = "Paths"
# A tibble: 6 x 2
Paths Colors
<chr> <chr>
1 Path1 Green
2 Path5 Pink
3 Path3 Red
4 Path2 Blue
5 Path4 Yellow
6 Path6 Purple
答案 1 :(得分:0)
在base R
中答案是:
## This part of the script is to separate the Paths and Colors columns
Paths <- data.frame(do.call('rbind', strsplit(as.character(df$Paths), '|', fixed = TRUE)))
Colors <- data.frame(do.call('rbind', strsplit(as.character(df$Colors), '|', fixed = TRUE)))
## Here Paths and Colors are pasted together and separated by underscore
Pathways = data.frame(matrix(NA, ncol = ncol(Paths), nrow = nrow(Colors)))
for (i in 1:ncol(Paths)){
Pathways[,i] = paste(Paths[,i], Colors[,i], sep = " ")
}
## Then, the number of times that each Path appears is counted.
occurrences <- table(unlist(Pathways))
occurrences <- data.frame(sort(occurrences, decreasing = T))
occurrences