Nothing
#' Set window length
#'
#' Exposure windows are defined as a period of time at the scale of the exposure series.
#' As an example: if an exposure series has an hourly time step, a window length
#' of `24` will consider the exposure within 24 hours intervals for effect
#' calculation. The same applies for the window interval, i.e. the period between
#' considered exposure windows. Set `length=-1` to disable moving windows.
#'
#' @param x vector of `EffectScenario` objects
#' @param length `numeric`, length of exposure window to consider for effect
#' calculation, set `length=-1` to disable moving windows
#' @param interval `numeric`, interval between considered exposure windows
#'
#' @return modified `EffectScenario` objects
#' @include class-EffectScenario.R
#' @export
#' @examples
#' # calculate the maximum effect for all windows of 10 days length
#' metsulfuron %>%
#' set_window(length=10, interval=1) %>%
#' effect()
set_window <- function(x, length, interval) {
# vectorized input
if(is.vector(x)) {
return(sapply(x, function(sc) set_window(sc, length=length, interval=interval)))
}
if(!missing(length)) {
if(!is.numeric(length) | base::length(length) > 1)
stop("length must be a scalar")
if(length == 0)
stop("interval must be larger than zero")
if(length < 0) {
length <- -1
x@window.interval <- -1
}
x@window.length <- length
}
if(!missing(interval)) {
if(!is.numeric(interval) | base::length(interval) > 1)
stop("interval must be a scalar")
if(interval <= 0)
interval <- -1
x@window.interval <- interval
}
x
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.