I have something like this:
ids <- c("A","B","C")
ls <- list()
ls[[1]] <- c("aa","aaa")
ls[[2]] <- c("bb","bbb")
ls[[3]] <- c("cc","ccc")
and I would like to obtain something like the next:
data.frame(ids = c("A","A","B","B","C","C"), ls = c("aa","aaa","bb","bbb","cc","ccc"))
Would you know how to do it? The length of each element of the ls can vary, but the length of the ids and ls is the same. Dplyr and purrr(tidyverse) is Ok for me
Best
The simplest base R method is to use
unlist
andrep
like this:rep
repeats the ids in varying lengths with the length of each list element calculated bylengths
. Then the nested list is converted to a vector withunlist
.