diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2019-04-10 10:17:35 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2019-04-10 10:17:35 +0200 |
commit | 194659fcaccdd1ee37851725b8c72e99daa3a8cf (patch) | |
tree | edbbebe8956000b9eb725ca425b91e051571ec02 /man/add_err.Rd | |
parent | 5814be02f286ce96d6cff8d698aea6844e4025f1 (diff) |
Adapt tests, vignettes and examples
- Write the NEWS
- Static documentation rebuilt by pkgdown
- Adapt mkinerrmin
- Fix (hopefully all) remaining problems in mkinfit
Diffstat (limited to 'man/add_err.Rd')
-rw-r--r-- | man/add_err.Rd | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/man/add_err.Rd b/man/add_err.Rd index e098d95c..506c6fdc 100644 --- a/man/add_err.Rd +++ b/man/add_err.Rd @@ -78,14 +78,12 @@ d_SFO_SFO_err <- add_err(d_SFO_SFO, function(x) 10, n = 3, seed = 123456789 ) # Name the datasets for nicer plotting names(d_SFO_SFO_err) <- paste("Dataset", 1:3) -# Name the model in the list of models (with only one member in this case) -# for nicer plotting later on. -# Be quiet and use the faster Levenberg-Marquardt algorithm, as the datasets -# are easy and examples are run often. Use only one core not to offend CRAN +# Name the model in the list of models (with only one member in this case) for +# nicer plotting later on. Be quiet and use only one core not to offend CRAN # checks f_SFO_SFO <- mmkin(list("SFO-SFO" = m_SFO_SFO), d_SFO_SFO_err, cores = 1, - quiet = TRUE, method.modFit = "Marq") + quiet = TRUE) plot(f_SFO_SFO) |