我们得到一个n data.frame
或matrix
相同大小的列表(r乘c),我们需要对所有表的每个单元格应用一个函数,并将结果作为 adata.frame
或matrix
相同大小(再次r乘c)。
For example:
a <- matrix(0:5, 2, 3)
b <- matrix(5:0, 2, 3)
c <- matrix(1, 2, 3)
l <- list(a, b, c)
foo(l, mean) # should retrun
2 2 2
2 2 2
# For instance the top-left cell of 3 given matrices are 0, 5, and 1, and the mean is 2
# For all other cells, the mean of the values in 3 matrices will be 2
有很多方法可以完成这项工作,但我正在寻找一个非常快速和简短的解决方案