0
考慮到與不同的列數的矩陣列表:如何將函數應用於列表中的每個元素,在特定的列範圍內?
set.seed(123)
a <- replicate(5, matrix(runif(25*30), ncol=25) , simplify=FALSE)
b <- replicate(5, matrix(runif(30*30), ncol=30) , simplify=FALSE)
list.of.matrices <- c(a,b)
如何申請函數式編程原則(即使用purrr包)到列的具體範圍(即第8行,從第二到列的末尾)?
map(list.of.matrices[8, 2:ncol(list.of.matrices)], mean)
以上的回報:
Error in 2:ncol(list.of.matrices) : argument of length 0