You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia> groupby!(ds, [:x, :y]) # groupby by more than one column
162
+
4×3 Grouped Dataset with 4 groups
163
+
Grouped by: x, y
164
+
Row │ x y z
165
+
│ identity identity identity
166
+
│ Int64? Int64? Int64?
167
+
─────┼──────────────────────────────
168
+
1 │ 1 1 1
169
+
2 │ 1 2 1
170
+
3 │ 2 1 1
171
+
4 │ 2 2 1
172
+
158
173
```
159
174
160
175
The `groupby!` and `groupby` functions accept the output of the `groupby` function. Thus, some may use these functions to incrementally group a data set.
0 commit comments