gpt4 book ai didi

r - 将频率数据帧转换为更广泛的格式

转载 作者:行者123 更新时间:2023-12-04 10:12:33 24 4
gpt4 key购买 nike

我有一个看起来像这样的数据框。

input dataframe

position,mean_freq,reference,alternative,sample_id
1,0.002,A,C,name1
2,0.04,G,T,name1
3,0.03,A,C,name2

这些数据是假设基因组中给定位置的核苷酸差异, mean_freq是相对于引用的,所以第一行表示 C's的比例是 0.002暗示 A0.998 .

我想通过创建新列将其转换为不同的结构,以便,
desired_output

position,G,C,T,A,sampleid
1,0,0.002,0,0.998,name1
2, 0.96,0,0.04,0,name
3,0,0.93,0,0.07,name2

我尝试过这种方法
per_position_full_nt_freq <- function(x){
df <- data.frame(A=0, C=0, G=0, T=0)
idx <- names(df) %in% x$alternative
df[,idx] <- x$mean_freq
idx2 <- names(df) %in% x$reference
df[,idx2] <- 1 - x$mean_freq
df$position <- x$position
df$sampleName <- x$sampleName
return(df)
}

desired_output_dataframe <- per_position_full_nt_freq(input_dataframe)

我遇到了一个错误
In matrix(value, n, p) :
data length [8905] is not a sub-multiple or multiple of the number of columns

另外,我觉得必须有一个更直观的解决方案,大概使用 tidyrdplyr .
如何方便地将输入数据帧转换为所需的输出数据帧格式?

谢谢你。

最佳答案

一种选择是创建一个 matrix 0 的 'G'、'C'、'T'、'A' 列名,match对于原始数据集的列名,使用 row/column索引分配值,然后 cbind使用原始数据集的 'position' 和 'sample_id',列

m1 <- matrix(0, ncol=4, nrow=nrow(df1), dimnames = list(NULL, c("G", "C", "T", "A")))
m1[cbind(seq_len(nrow(df1)), match(df1$alternative, colnames(m1)))] <- df1$mean_freq
m1[cbind(seq_len(nrow(df1)), match(df1$reference, colnames(m1)))] <- 0.1 - df1$mean_freq
cbind(df1['position'], m1, df1['sample_id'])
# position G C T A sample_id
#1 1 0.00 0.002 0.00 0.098 name1
#2 2 0.06 0.000 0.04 0.000 name1
#3 3 0.00 0.030 0.00 0.070 name2

关于r - 将频率数据帧转换为更广泛的格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47235806/

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