R/meddra.R
list_parse.Rd
A list to a tibble.
list_parse(to_tibble)
A list with nested lists.
A tibble.
temp_list <- list(list(a = 1, b = 3), list(a = 4, b = 5)) list_parse(temp_list) #> # A tibble: 2 x 2 #> a b #> <dbl> <dbl> #> 1 1 3 #> 2 4 5