Skip to content

Commit da3fa5f

Browse files
authored
Merge pull request #601 from cmu-delphi/lcb/tweak-archive-tol-interface
Tweak archive construction and compactification tolerance interfaces
2 parents a699ae8 + 954aa4b commit da3fa5f

23 files changed

+471
-257
lines changed

NAMESPACE

+3-2
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ importFrom(data.table,copy)
143143
importFrom(data.table,frollapply)
144144
importFrom(data.table,frollmean)
145145
importFrom(data.table,frollsum)
146+
importFrom(data.table,is.data.table)
146147
importFrom(data.table,key)
147148
importFrom(data.table,rbindlist)
148149
importFrom(data.table,set)
@@ -171,7 +172,6 @@ importFrom(dplyr,if_else)
171172
importFrom(dplyr,is_grouped_df)
172173
importFrom(dplyr,lag)
173174
importFrom(dplyr,mutate)
174-
importFrom(dplyr,near)
175175
importFrom(dplyr,pick)
176176
importFrom(dplyr,pull)
177177
importFrom(dplyr,relocate)
@@ -208,6 +208,7 @@ importFrom(rlang,expr_label)
208208
importFrom(rlang,f_env)
209209
importFrom(rlang,f_rhs)
210210
importFrom(rlang,is_bare_integerish)
211+
importFrom(rlang,is_bare_numeric)
211212
importFrom(rlang,is_environment)
212213
importFrom(rlang,is_formula)
213214
importFrom(rlang,is_function)
@@ -244,5 +245,5 @@ importFrom(utils,capture.output)
244245
importFrom(utils,tail)
245246
importFrom(vctrs,vec_cast)
246247
importFrom(vctrs,vec_data)
247-
importFrom(vctrs,vec_detect_missing)
248+
importFrom(vctrs,vec_duplicate_any)
248249
importFrom(vctrs,vec_equal)

NEWS.md

+13
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
1616
you want to use `method = "trendfilter"` you will need to manually install
1717
this dependency (e.g., with `remotes::install_github("glmgen/trendfilter")`).
1818
- In `revision_summary()`:
19+
- The `should_compactify` argument is now called `compactify`. To migrate,
20+
change any calls with `should_compactfiy =` to `compactify =`.
1921
- Output now uses the name `lag_near_latest` instead of `time_near_latest`. To
2022
migrate, update references to `time_near_latest` to `lag_near_latest`.
2123
- `revision_summary(epi_arch)` without specifying the measurement column to
@@ -32,9 +34,18 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
3234
`geo_keys`, `other_keys`, and `time_keys`.
3335
- The `extra_keys` argument has been deprecated and replaced with
3436
`other_keys`.
37+
- The compactification tolerance argument has been renamed to
38+
`compactify_abs_tol` or `abs_tol`, depending on the function; now defines a
39+
nonstrict tolerances; and defaults to 0 (requiring exact matches in order to
40+
compactify). This argument has been added to `as_epi_archive()` and
41+
`epix_merge()` and removed (along with all compactification options) from
42+
`new_epi_archive()`.
43+
- `validate_epi_archive()` now follows the validator convention of operating on
44+
an "unvalidated" `epi_archive` (from `new_epi_archive`) rather than arguments.
3545

3646
## Improvements
3747
- `revision_summary()` now supports all `time_type`s.
48+
- The compactification tolerance setting now works with integer-type columns.
3849

3950
## Bug fixes
4051

@@ -43,6 +54,8 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
4354
- Fixed `epi_archive` compactification raising an error on certain value column
4455
classes such as `"distribution"` (#541); it's now easier to form an archive of
4556
forecasts in that format.
57+
- Fixed large compactification tolerances potentially removing all versions of
58+
some observations in certain cases when activity was flat.
4659

4760
## Cleanup
4861

0 commit comments

Comments
 (0)