We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d0195b commit 0f5958cCopy full SHA for 0f5958c
NEWS.md
@@ -30,6 +30,13 @@
30
result. This typically requires either the usage of `.groups` to silence the
31
message or an explicit `ungroup()` afterwards.
32
33
+ Additionally, using `summarise()` or `slice()` with `.by` will never sort the
34
+ results by the group key, unlike with `group_by()`. Instead, the results are
35
+ returned using the existing ordering of the groups from the original data. We
36
+ feel this is more predictable, better maintains any ordering you might have
37
+ already applied with a previous call to `arrange()`, and provides a way to
38
+ maintain the current ordering without having to resort to factors.
39
+
40
This exciting feature was inspired by
41
[data.table](https://CRAN.R-project.org/package=data.table), where the
42
equivalent syntax looks like:
0 commit comments