twa: Calculate a time weighted average concentration

View source: R/twa.R

twaR Documentation

Calculate a time weighted average concentration

Description

The moving average is built only using the values in the past, so the earliest possible time for the maximum in the time series returned is after one window has passed.

Usage

twa(x, window = 21)

## S3 method for class 'one_box'
twa(x, window = 21)

Arguments

x

An object of type one_box

window

The size of the moving window

See Also

max_twa

Examples

pred <- sawtooth(one_box(10),
  applications = data.frame(time = c(0, 7), amount = c(1, 1)))
max_twa(pred)

jranke/pfm documentation built on March 14, 2024, 3:18 a.m.