Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ Suggests:
knitr,
rmarkdown,
tinytest
RoxygenNote: 7.3.3
Roxygen: list(markdown = TRUE)
VignetteBuilder: knitr
Config/roxygen2/version: 8.0.0
2 changes: 1 addition & 1 deletion R/RcppExports.R
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ minmax_run <- function(x, metric = "min", na_rm = TRUE) {
#'
#' @param x `numeric` vector which running function is calculated on
#'
#' @param k (`integer`` vector or single value)\cr
#' @param k (`integer` vector or single value)\cr
#' Denoting size of the running window. If `k` is a single value then window
#' size is constant for all elements, otherwise if `length(k) == length(x)`
#' different window size for each element.
Expand Down
4 changes: 3 additions & 1 deletion man/mean_run.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/runner.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion man/sum_run.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/runner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -780,7 +780,7 @@ runner_vec(Rcpp::Vector<ITYPE> const &x,
//'
//' @param x `numeric` vector which running function is calculated on
//'
//' @param k (`integer`` vector or single value)\cr
//' @param k (`integer` vector or single value)\cr
//' Denoting size of the running window. If `k` is a single value then window
//' size is constant for all elements, otherwise if `length(k) == length(x)`
//' different window size for each element.
Expand Down
Loading