Skip to content

Commit c551da1

Browse files
committed
version, news, pkgdown
1 parent 15949f3 commit c551da1

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: epiprocess
33
Title: Tools for basic signal processing in epidemiology
4-
Version: 0.7.6
4+
Version: 0.7.7
55
Authors@R: c(
66
person("Jacob", "Bien", role = "ctb"),
77
person("Logan", "Brooks", email = "[email protected]", role = c("aut", "cre")),

NEWS.md

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
1111
calculated (#397).
1212
- Add new `epi_slide_mean` function to allow much (~30x) faster rolling
1313
average computations in some cases (#400).
14+
- Add new `epi_slide_sum` function to allow much faster rolling sum
15+
computations in some cases (#433).
16+
- Add new `epi_slide_opt` function to allow much faster rolling computations
17+
in some cases, using `data.table` and `slider` optimized rolling functions
18+
(#433).
1419
- regenerated the `jhu_csse_daily_subset` dataset with the latest versions of
1520
the data from the API
1621
- changed approach to versioning, see DEVELOPMENT.md for details

R/slide.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -935,7 +935,7 @@ full_date_seq <- function(x, before, after, time_step) {
935935
# `tsibble` classes apparently can't be added to in different units, so even
936936
# if `time_step` is provided by the user, use a value-1 unitless step.
937937
if (inherits(x$time_value, c("yearquarter", "yearweek", "yearmonth")) ||
938-
is.numeric(x$time_value)) {
938+
is.numeric(x$time_value)) {
939939
all_dates <- seq(min(x$time_value), max(x$time_value), by = 1L)
940940

941941
if (before != 0) {

_pkgdown.yml

+2
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ reference:
6868
- contents:
6969
- epi_slide
7070
- epi_slide_mean
71+
- epi_slide_sum
72+
- epi_slide_opt
7173
- epi_cor
7274
- title: Vector functions
7375
desc: Functions that act directly on signal variables.

0 commit comments

Comments
 (0)