diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2017-01-18 19:58:13 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2017-01-18 19:58:13 +0100 |
commit | a1d9f93138c2cfed92a683e37e72c737d52b7ad7 (patch) | |
tree | b05e26c2c35f62145ad86a34ce43b9aeb9faef91 /NAMESPACE | |
parent | 7900d5aa3b9e3036d0fd983a5611f71d3f3f64b2 (diff) |
One box time series and twa values
- one_box() creates decline time series from mkinfit objects or simply
from a half-life
- sawtooth() generates sawtooth curves for arbitrary application
patterns and decline models
- twa() calculates moving window averages
- max_twa() gives their maxima and
- plot.one_box() can plot series generated by one_box() or sawtooth(),
optionally adding a greay rectangle to illustrate the maximum moving
window time weighted average
Diffstat (limited to 'NAMESPACE')
-rw-r--r-- | NAMESPACE | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -2,8 +2,13 @@ S3method(GUS,chent) S3method(GUS,numeric) +S3method(max_twa,one_box) +S3method(one_box,mkinfit) +S3method(one_box,numeric) S3method(plot,TOXSWA_cwa) +S3method(plot,one_box) S3method(print,GUS_result) +S3method(twa,one_box) export(GUS) export(PEC_soil) export(PEC_sw_drainage_UK) @@ -14,15 +19,25 @@ export(SSLRC_mobility_classification) export(TOXSWA_cwa) export(endpoint) export(geomean) +export(max_twa) +export(one_box) export(pfm_degradation) export(read.TOXSWA_cwa) +export(sawtooth) export(soil_DT50) export(soil_Kfoc) export(soil_N) export(soil_sorption) +export(twa) import(graphics) import(mkin) importFrom(R6,R6Class) importFrom(methods,is) +importFrom(mkin,mkinpredict) importFrom(readr,fwf_empty) importFrom(readr,read_fwf) +importFrom(stats,filter) +importFrom(stats,frequency) +importFrom(stats,plot.ts) +importFrom(stats,time) +importFrom(stats,ts) |