批量读取文件
2019-12-16 本文已影响0人
F_U_N
file = list.files(path = "G:\\",pattern = ".txt")
file
RPKM <- lapply(file,function(x) read.table(x, header = T,row.names = 1))
rawdata <-Reduce(cbind, RPKM)
file = list.files(path = "G:\\",pattern = ".txt")
file
RPKM <- lapply(file,function(x) read.table(x, header = T,row.names = 1))
rawdata <-Reduce(cbind, RPKM)