[//]: # (title: ungroup) Replaces [`ColumnGroup`](DataColumn.md#columngroup) with its nested columns. ```text ungroup { columns } ``` **Reverse operation:** [`group`](group.md) See [column selectors](ColumnSelectors.md) for how to select the columns for this operation. ```kotlin // name.firstName -> firstName // name.lastName -> lastName df.ungroup { name } ```