我正在尝试将 xtable 用于 3 维数组。我最小的例子是
Test <-
structure(1:8, .Dim = c(2L, 2L, 2L), .Dimnames = list(c("A1",
"A2"), c("B1", "B2"), c("C1", "C2")))
library(plyr)
library(xtable)
a_ply(.data=Test, .margins=3, function(i) {
xtable(x = Test[, , i])
}
)
这会产生以下错误:
Error in xtable(x = Test[, , i]) : subscript out of bounds
如果您能给我一些解决此问题的指示,我将不胜感激。提前致谢。