p <- read.csv(file.choose(),stringsAsFactors = F,header = F)
View(p)
p <- p[,1]
p
FDR <- p.adjust(p,method="fdr",n=length(p))
FDR
write.csv(FDR,file = "FDR.csv")
p <- read.csv(file.choose(),stringsAsFactors = F,header = F)
View(p)
p <- p[,1]
p
FDR <- p.adjust(p,method="fdr",n=length(p))
FDR
write.csv(FDR,file = "FDR.csv")
本文标题:Calculating FDR in R
本文链接:https://www.haomeiwen.com/subject/aawaxqtx.html
网友评论