Aliases: aperm aperm.default aperm.table
Keywords: array
### ** Examples # interchange the first two subscripts on a 3-way array x x <- array(1:24, 2:4) xt <- aperm(x, c(2,1,3)) stopifnot(t(xt[,,2]) == x[,,2], t(xt[,,3]) == x[,,3], t(xt[,,4]) == x[,,4]) UCB <- aperm(UCBAdmissions, c(2,1,3)) UCB[1,,]
Dept Admit A B C D E F Admitted 512 353 120 138 53 22 Rejected 313 207 205 279 138 351
summary(UCB) # UCB is still a contingency table
Number of cases in table: 4526 Number of factors: 3 Test for independence of all factors: Chisq = 2000.3, df = 16, p-value = 0
## Don't show: stopifnot(is.table(UCB)) ## End(Don't show)