-
Notifications
You must be signed in to change notification settings - Fork 374
Open
Description
Extract a table-valued column into top-level columns. Code by Bogumił Kamiński on Slack.
unnest(df, col) = flatten(
select(df, Not(col), col => ByRow(Tables.columntable) => AsTable),
names(df, Not(col))
)
This might come with its opposite, nest
.
See also tidyr - nest
and unnest
.
seabbs