aperm.listenv {listenv} | R Documentation |
Transpose a 'listenv' array by permuting its dimensions
Description
Transpose a 'listenv' array by permuting its dimensions
Usage
## S3 method for class 'listenv'
aperm(a, perm, ...)
## S3 method for class 'listenv'
t(x)
Arguments
a , x |
(listenv) The list environment to be transposed |
perm |
(integer vector) An index vector of length |
... |
Additional arguments passed to |
Value
Returns a list environment with permuted dimensions
See Also
These functions works like base::aperm()
and base::t()
.
Examples
x <- as.listenv(1:6)
dim(x) <- c(2, 3)
dimnames(x) <- list(letters[1:2], LETTERS[1:3])
print(x)
x <- t(x)
print(x)
x <- aperm(x, perm = 2:1)
print(x)
[Package listenv version 0.9.1 Index]