1- # epiprocess 0.5 .0.9999 (development version)
1+ # epiprocess 0.6 .0.9999
22
33Note that ` epiprocess ` uses the [ Semantic Versioning
4- ("semver")] ( https://semver.org/ ) scheme for all release versions, but not for
5- development versions. A ".9999" suffix indicates a development version.
4+ ("semver")] ( https://semver.org/ ) scheme for all release versions, but any
5+ inter-release development versions will include an additional ".9999" suffix.
6+
7+ # epiprocess 0.6.0
68
79## Breaking changes:
810
@@ -81,6 +83,7 @@ development versions. A ".9999" suffix indicates a development version.
8183* Added a ` NEWS.md ` file to track changes to the package.
8284* Implemented ` ?dplyr::dplyr_extending ` for ` epi_df ` s
8385 ([ #223 ] ( https://github.com/cmu-delphi/epiprocess/issues/223 ) ).
86+ * Fixed various small documentation issues ([ #217 ] ( https://github.com/cmu-delphi/epiprocess/issues/217 ) ).
8487
8588# epiprocess 0.5.0:
8689
@@ -93,13 +96,13 @@ development versions. A ".9999" suffix indicates a development version.
9396
9497## Improvements:
9598
96- * Fixed ` epix_merge ` , ` <epi_archive>$merge ` always raising error on ` sync="truncate" `
99+ * Fixed ` epix_merge ` , ` <epi_archive>$merge ` always raising error on ` sync="truncate" ` .
97100
98101## Cleanup:
99102
100- * Added ` Remotes: ` entry for ` genlasso ` , which was removed from CRAN
101- * Added ` as_epi_archive ` tests
102- * Added missing ` epix_merge ` test for ` sync="truncate" `
103+ * Added ` Remotes: ` entry for ` genlasso ` , which was removed from CRAN.
104+ * Added ` as_epi_archive ` tests.
105+ * Added missing ` epix_merge ` test for ` sync="truncate" ` .
103106
104107# epiprocess 0.4.0:
105108
@@ -142,7 +145,7 @@ development versions. A ".9999" suffix indicates a development version.
142145 * ` epix_<method> ` will not mutate input ` epi_archive ` s, but may alias them
143146 or alias their fields (which should not be a worry if a user sticks to
144147 these ` epix_* ` functions and "regular" R functions with
145- copy-on-write-like behavior, avoiding mutating functions ` [.data.table ` )
148+ copy-on-write-like behavior, avoiding mutating functions ` [.data.table ` ).
146149 * ` x$<method> ` may mutate ` x ` ; if it mutates ` x ` , it will return ` x `
147150 invisibly (where this makes sense), and, for each of its fields, may
148151 either mutate the object to which it refers or reseat the reference (but
@@ -183,7 +186,7 @@ development versions. A ".9999" suffix indicates a development version.
183186* New function ` epix_fill_through_version ` , method
184187 ` <epi_archive>$fill_through_version ` : non-mutating & mutating way to
185188 ensure that an archive contains versions at least through some
186- ` fill_versions_end ` , extrapolating according to ` how ` if necessary
189+ ` fill_versions_end ` , extrapolating according to ` how ` if necessary.
187190* Example archive data object is now constructed on demand from its
188191 underlying data, so it will be based on the user's version of
189192 ` epi_archive ` rather than an outdated R6 implementation from whenever the
@@ -289,7 +292,7 @@ Classes:
289292 * ` epi_cor ` calculates Pearson, Kendall, or Spearman correlations
290293 between two (optionally time-shifted) variables in an ` epi_df ` within
291294 user-specified groups.
292- * Convenience function: ` is_epi_df `
295+ * Convenience function: ` is_epi_df ` .
293296* ` epi_archive ` : R6 class for version (patch) data for geotemporal
294297 epidemiological time series data sets. Comes with S3 methods and regular
295298 functions that wrap around this functionality for those unfamiliar with R6
@@ -298,23 +301,23 @@ Classes:
298301 containing snapshots and/or patch data for every available version of
299302 the data set.
300303 * ` as_of ` : extracts a snapshot of the data set as of some requested
301- version, in ` epi_df ` format
304+ version, in ` epi_df ` format.
302305 * ` epix_slide ` , ` <epi_archive>$slide ` : similar to ` epi_slide ` , but for
303306 ` epi_archive ` s; for each requested ` ref_time_value ` and group, applies
304307 a time window and user-specified computation to a snapshot of the data
305308 as of ` ref_time_value ` .
306309 * ` epix_merge ` , ` <epi_archive>$merge ` : like ` merge ` for ` epi_archive ` s,
307310 but allowing for the last version of each observation to be carried
308311 forward to fill in gaps in ` x ` or ` y ` .
309- * Convenience function: ` is_epi_archive `
312+ * Convenience function: ` is_epi_archive ` .
310313
311314Additional functions:
312315* ` growth_rate ` : estimates growth rate of a time series using one of a few
313316 built-in ` method ` s based on relative change, linear regression,
314317 smoothing splines, or trend filtering.
315318* ` detect_outlr ` : applies one or more outlier detection methods to a given
316319 signal variable, and optionally aggregates the outputs to create a
317- consensus result
320+ consensus result.
318321* ` detect_outlr_rm ` : outlier detection function based on a
319322 rolling-median-based outlier detection function; one of the methods
320323 included in ` detect_outlr ` .
0 commit comments