Description Usage Arguments Details
Functions to calculate simple statistical Air Quality indicators, also for legal purposes.
1 2 3 4 5 6 7 8 9 10 11 12 13 | stat.period (x, period, necess, FUN = mean)
stat.period2(x, period, nmax.missing, FUN = mean)
which.period(x, period, necess, FUN = which.max)
exc.period (x, period, necess, threshold)
stat.window(x, window, necess, FUN = mean)
mean.window(x, k, necess)
detect.event(x, threshold)
aot(x, hr, threshold = 80, estimate = T,
hr.min = 8, hr.max = 19)
shift(x, k)
|
x |
vector of the concentration values |
period |
vector, with the same length as |
window |
numerical vectors with two elements; defines the running window, e.g. |
necess |
if >1, number of valid data needed in each time period. If <1, fraction of data needed in each time period. |
nmax.missing |
number of missing data accepted in each time period |
FUN |
the function to be applied |
threshold |
threshold |
k |
in |
hr |
numerical vector of the hours (with the same length as |
estimate |
logical. IF |
hr.min |
first hour of the timerange over which AOT is calculated |
hr.max |
last hour of the timerange over which AOT is calculated |
The functions stat.period and stat.period2 apply the function FUN over defined time periods, with different approaches in handling missing data. The function which.period is similar to stat.period, but you can use it for functions (such as which.min or which.max ) which do not accept the argument na.rm.
Instead stat.window operates on a floating window, and calls shift that moves the time series forward or backward in time. The function mean.window do the same and is more efficient, but limited to the moving average.
The function exc.period counts exceedances of a given threshold.
Instead detect.event returns an array containing the date and time of the exceedances and their duration (expressed in number of timestep).
aot calculates Accumulated exposure Over Threshold
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.