Create a list column from multiple columns
to_list_column.Rd
This function replaces a set of input columns that you pass in with a list column containing the values of input column on a row-by-row basis.
Examples
df <- tibble::tibble(a_1=1:3,a_2=2:4,a_3=3:5,b=4:6) |> to_list_column(a,a_1,a_2,a_3)