unnest_vectors: Unnest vectors

View source: R/unnest-vectors.R

unnest_vectorsR Documentation

Unnest vectors

Description

Unnest vectors

Usage

unnest_vectors(l)

Arguments

l

list of vectors of same length, although obcsured in levels of nesting

Value

list of vectors without any nesting.

Examples

x <- stats::runif(10)
y <- LETTERS[1:10]
l <- list(x = x, y, list(list(x, y), nums = x, y))
unnest_vectors(l)


WhiteJP/jpw documentation built on April 17, 2025, 5:47 a.m.