group_by
group_by groups column content into vectors.
Syntax
Parameters
| Parameter | Type | Description |
|---|---|---|
| by optional | Union[str, list[str]] | The column(s) by which to group data.
|
Returns
A new table containing grouping columns and grouped data. Column content is grouped into vectors.
Examples
In this example, group_by creates a vector of values for each column.
In this example, group_by creates a vector of values, as grouped by X.
In this example, group_by creates a vector of values, as grouped by X and Y.