簡體   English   中英

如何將 3 個相關矩陣讀取為數組

[英]How to read 3 correlation matrix as array

我想在一個數組中讀取 3 個獨立的相關矩陣。 我已按照此處所示的方法進行操作,但是出現錯誤,但不知道為什么。 如果有人能看到我的代碼並幫助我,我將不勝感激。 這是我的代碼和模擬數據。

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

謝謝!

該問題與sep = ';'有關相反,它是sep=","並且它返回單個字符串列而不是多個列。 因此,當我們使用索引進行分配時,它顯示了錯誤

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM