A list to a tibble.

list_parse(to_tibble)

Arguments

to_tibble

A list with nested lists.

Value

A tibble.

Examples

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