@@ -4,6 +4,18 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
4
4
5
5
# epiprocess 0.9
6
6
7
+ ## Breaking changes
8
+ - In ` epi[x]_slide ` :
9
+ - ` names_sep ` is deprecated, and if you return data frames from your
10
+ computations, they will no longer be unpacked into separate columns with
11
+ name prefixes; instead:
12
+ - if you don't provide a name for your slide computations, they will be
13
+ unpacked into separate columns, just without any name prefixes
14
+ - if you do provide a name for your slide computation, it will become a
15
+ packed data.frame-class column (see ` tidyr::pack ` ).
16
+ - ` as_list_col ` is deprecated; you can now directly return a list from your
17
+ slide computations instead.
18
+
7
19
## Improvements
8
20
9
21
- Added ` complete.epi_df ` , which fills in missing values in an ` epi_df ` with
@@ -21,16 +33,14 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
21
33
22
34
## Breaking changes
23
35
24
- - In ` epi[x]_slide ` :
25
- - ` names_sep ` is deprecated, and if you return data frames from your
26
- computations, they will no longer be unpacked into separate columns with
27
- name prefixes; instead:
28
- - if you don't provide a name for your slide computations, they will be
29
- unpacked into separate columns, just without any name prefixes
30
- - if you do provide a name for your slide computation, it will become a
31
- packed data.frame-class column (see ` tidyr::pack ` ).
32
- - ` as_list_col ` is deprecated; you can now directly return a list from your
33
- slide computations instead.
36
+ - ` epi_df ` 's are now more strict about what types they allow in the time column.
37
+ Namely, we are explicit about only supporting ` Date ` at the daily and weekly
38
+ cadence and generic integer types (for yearly cadence).
39
+ - ` epi_slide ` ` before ` and ` after ` arguments are now require the user to
40
+ specific time units in certain cases. The ` time_step ` argument has been
41
+ removed.
42
+ - ` epix_slide ` ` before ` argument now defaults to ` Inf ` , and requires the user to
43
+ specify units in some cases. The ` time_step ` argument has been removed.
34
44
- ` detect_outlr_stl(seasonal_period = NULL) ` is no longer accepted. Use
35
45
` detect_outlr_stl(seasonal_period = <value>, seasonal_as_residual = TRUE) `
36
46
instead. See ` ?detect_outlr_stl ` for more details.
@@ -87,17 +97,6 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
87
97
of ` epi_df ` s to let ` {epipredict} ` work more easily with other libraries (#471 ).
88
98
- Removed some external package dependencies.
89
99
90
- ## Breaking Changes
91
-
92
- - ` epi_df ` 's are now more strict about what types they allow in the time column.
93
- Namely, we are explicit about only supporting ` Date ` at the daily and weekly
94
- cadence and generic integer types (for yearly cadence).
95
- - ` epi_slide ` ` before ` and ` after ` arguments are now require the user to
96
- specific time units in certain cases. The ` time_step ` argument has been
97
- removed.
98
- - ` epix_slide ` ` before ` argument now defaults to ` Inf ` , and requires the user to
99
- specify units in some cases. The ` time_step ` argument has been removed.
100
-
101
100
# epiprocess 0.7.0
102
101
103
102
## Breaking changes:
0 commit comments