我想将深度嵌入列表中的元素提取到数组中。
例如,我在每个网格点 (2x2) 处实现 t 检验,并希望将 t 检验中的每个 p 值保存到没有嵌套 for 循环的 2x2 数组中。(我的数据集非常大。)
z <- rnorm(2*2*2)
z <- array(z, dim=c(2,2,2))
ttest <- apply(z, c(1,2), function(x) t.test(x, mu=.3, var.equal=TRUE))
ttest[[1,1]]$p.value # extracts p-value at the first grid point.
# This would be the [1,1] element in my desired array.