View source: R/transpose_list.R
transpose_list | R Documentation |
Transpose a matrix-like list.
transpose_list(x)
x |
An R list. |
l <- list( 1:3, 4:6, 7:9 )
stopifnot( identical(
transpose_list( transpose_list(l) ), l
) )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.