Would want to include some kind of check that the list columns can be appropriately handling by str_c() -- eg, not nested lists.
I considered also including an option to unnest list-columns into separate rows, but I this could get messy when there are multiple list-columns in the dataframe, if they don't all have the same number of elements per row.
ie, an arg
list_collapse = FALSE
.FALSE
would provide current behavior of blank cells in the output.TRUE
would collapse each list element, e.g.,Would want to include some kind of check that the list columns can be appropriately handling by
str_c()
-- eg, not nested lists.I considered also including an option to unnest list-columns into separate rows, but I this could get messy when there are multiple list-columns in the dataframe, if they don't all have the same number of elements per row.