我在 MATLAB 中有一系列函数需要转换为 R。不幸的是,我不太了解 R。
一个主要障碍是将每个 50x86069 的 csv 100 文件加载到 100、50、86069 数组中。
我将代码设置为打开/写入数组,然后将每个 50x86069 csv 文件作为循环的一部分读取。
l <- list.files(inputs)
data.array<-array(0,dim=c(100,50,86069))
# loop through the input files to get the data loaded into an array
for(i in 1:5)
in.file <- read.csv(paste(inputs,"/",l[[i]], sep = ""))
in.file = in.file[,-1] ## remove the first column
现在我需要将 in.file 放入 data.array(i,50,86069)。
任何帮助将不胜感激!
谢谢-