df <- tidytable(
x = 1:3,
y = list(0, 1:3, 4:5)
)
# Automatically creates names
df %>% unnest_wider.(y)
# But you can provide names_sep for increased naming control
df %>% unnest_wider.(y, names_sep = "_")
Run the code above in your browser using DataLab