Learn R Programming

listenv (version 0.9.1)

aperm.listenv: Transpose a 'listenv' array by permuting its dimensions

Description

Transpose a 'listenv' array by permuting its dimensions

Usage

# S3 method for listenv
aperm(a, perm, ...)

# S3 method for listenv t(x)

Value

Returns a list environment with permuted dimensions

Arguments

a, x

(listenv) The list environment to be transposed

perm

(integer vector) An index vector of length dim(a)

...

Additional arguments passed to base::aperm().

See Also

These functions works like base::aperm() and base::t().

Examples

Run this code
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)

Run the code above in your browser using DataLab