简体   繁体   中英

How to read 3 correlation matrix as array

I would like to read 3 independent correlation matrix in one array. I have followed the as indicated in here However, getting error and don't why. I would appreciate if some one could see my code and help me. Here are my codes and simulated data.

dataDir <- getwd()
## Each matrix is in a csv file
set.seed(22)
## m1
li.A <- matrix(rnorm(100), nrow = 20)
rownames(li.A) <- LETTERS[1:20]
colnames(li.A) <- paste0("S_", ncol = 1:5)
m1 <- cor(t(li.A))
write.csv(m1, file = “m1.csv")

# m2
set.seed(42)
pa.A <- matrix(rnorm(100), nrow = 20)
rownames(pa.A) <- LETTERS[1:20]
colnames(pa.A) <- paste0("S_", ncol = 1:5)
m2 <- cor(t(pa.A))
write.csv(m2, file = “m2.csv")

# m3
set.seed(44)
li.B <- matrix(rnorm(100), nrow = 20)
rownames(li.B) <- LETTERS[1:20]
colnames(li.B) <- paste0("S_", ncol = 1:5)
m3 <- cor(t(li.B))
write.csv(m3, file = “m3.csv")

fileList <- dir(path=dataDir,pattern = ".csv")

## Read all matrices into an array
A <- array(as.numeric(NA),dim=c(20,20,3)) # There are 3 matrices of size 20 x 20
for (i in 1:length(fileList)){
  A[,,i] <- as.matrix(read.delim(file.path(dataDir,fileList[i]), sep = ';', header=TRUE, row.names=1))
}

here is the error.
Error in A[, , i] <- as.matrix(read.delim(file.path(dataDir, fileList[i]),  : 
  replacement has length zero

Thank you!

The issue would be related to the sep = ';'instead it is sep="," and it returns a single string column instead of the multiple columns. Therefore, when we do the assignment with indexing, it showed the error

A <- array(as.numeric(NA),dim=c(20,20,3)) # There are 3 matrices of size 20 x 20
 for (i in 1:length(fileList)){
   A[,,i] <- as.matrix(read.delim(file.path(dataDir,fileList[i]), 
       sep = ',', header=TRUE, row.names=1))
 }

dim(A)
#[1] 20 20  3

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM