@@ -10,7 +10,7 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
10
10
- All variables are now dot-prefixed to be more consistent with tidyverse
11
11
style for functions that allow tidyeval.
12
12
- The ` before/after ` arguments have been replaced with the ` .window_size ` and
13
- ` .align ` arguments. See documentation for how to translate.
13
+ ` .align ` arguments.
14
14
- ` names_sep ` has been removed. If you return data frames from your
15
15
computations:
16
16
- 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
20
20
- ` as_list_col ` has been removed. You can now directly return a list from your
21
21
slide computations instead. If you were using ` as_list_col=TRUE ` , you will
22
22
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.
23
27
- ` 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.
24
30
- ` names_sep ` has been removed. If you return data frames from your
25
31
computations:
26
32
- 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
30
36
- ` as_list_col ` has been removed. You can now directly return a list from your
31
37
slide computations instead. If you were using ` as_list_col=TRUE ` , you will
32
38
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.
33
43
- ` as_epi_df() ` or ` as_epi_archive() ` no longer accept ` additional_metadata ` .
34
44
Use the new ` other_keys ` arg to specify additional key columns, such as age
35
45
group columns or other demographic breakdowns. Miscellaneous metadata are no
0 commit comments