diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2019-02-26 20:28:15 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2019-02-26 20:33:32 +0100 |
commit | 396e40d2c45d81a8e74c41a2f632665021e980a1 (patch) | |
tree | c7ab9b5356361b1939e9b00183a7f31071782f64 /man/nafta.Rd | |
parent | 64e636d11311be57978ef394c48c9b43fe219059 (diff) |
NAFTA SOP Attachment vignette
Also:
- Change rounding in print.nafta
- Add dots argument to nafta()
- Use cores=1 in examples
- Restrict N in IORE model to values > 0
Diffstat (limited to 'man/nafta.Rd')
-rw-r--r-- | man/nafta.Rd | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/man/nafta.Rd b/man/nafta.Rd index 48b4fefe..6917d0e9 100644 --- a/man/nafta.Rd +++ b/man/nafta.Rd @@ -4,7 +4,7 @@ Evaluate parent kinetics using the NAFTA guidance } \usage{ -nafta(ds, title = NA, quiet = FALSE) +nafta(ds, title = NA, quiet = FALSE, \dots) } \description{ The function fits the SFO, IORE and DFOP models using @@ -20,6 +20,10 @@ nafta(ds, title = NA, quiet = FALSE) } \item{title}{ Optional title of the dataset } \item{quiet}{ Should the evaluation text be shown? } + \item{\dots}{ + Further arguments passed to \code{\link{mmkin}}. + } + } \value{ An list of class \code{nafta}. The list element named "mmkin" is the @@ -39,7 +43,7 @@ nafta(ds, title = NA, quiet = FALSE) \url{https://www.epa.gov/pesticide-science-and-assessing-pesticide-risks/standard-operating-procedure-using-nafta-guidance} } \examples{ - nafta_evaluation <- nafta(NAFTA_SOP_Appendix_D) + nafta_evaluation <- nafta(NAFTA_SOP_Appendix_D, cores = 1) print(nafta_evaluation) plot(nafta_evaluation) } |