Skip to content

Commit 187bd5d

Browse files
committed
doc: update NEWS
1 parent 8202c0e commit 187bd5d

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

NEWS.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
1010
- All variables are now dot-prefixed to be more consistent with tidyverse
1111
style for functions that allow tidyeval.
1212
- The `before/after` arguments have been replaced with the `.window_size` and
13-
`.align` arguments. See documentation for how to translate.
13+
`.align` arguments.
1414
- `names_sep` has been removed. If you return data frames from your
1515
computations:
1616
- without a name, they will be unpacked into separate columns without name
@@ -20,7 +20,13 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
2020
- `as_list_col` has been removed. You can now directly return a list from your
2121
slide computations instead. If you were using `as_list_col=TRUE`, you will
2222
need to wrap your output in a list.
23+
- Ungrouped slides are no longer allowed in `epi_slide`. If you used this for
24+
geographic aggregation up to national, consider using `sum_groups_epi_df`.
25+
- Added `sum_groups_epi_df` to allow aggregation across key columns prior to
26+
sliding.
2327
- `epix_slide` interface has major changes.
28+
- All variables are now dot-prefixed to be more consistent with tidyverse
29+
style for functions that allow tidyeval.
2430
- `names_sep` has been removed. If you return data frames from your
2531
computations:
2632
- without a name, they will be unpacked into separate columns without name
@@ -30,6 +36,10 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
3036
- `as_list_col` has been removed. You can now directly return a list from your
3137
slide computations instead. If you were using `as_list_col=TRUE`, you will
3238
need to wrap your output in a list.
39+
- `as_epi_df()` now checks that every group has unique time values and errors if
40+
this is not the case. The same check is performed at the beginning of
41+
`epi_slide()`. This check is currently not enforced in dplyr operations (like
42+
for joins, mutates, or select), but we plan to add it in the future.
3343
- `as_epi_df()` or `as_epi_archive()` no longer accept `additional_metadata`.
3444
Use the new `other_keys` arg to specify additional key columns, such as age
3545
group columns or other demographic breakdowns. Miscellaneous metadata are no

0 commit comments

Comments
 (0)