diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2016-06-27 13:21:39 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2016-06-27 13:38:38 +0200 |
commit | 4b0b5346a9f026c5a19d452e4649326fe56d464c (patch) | |
tree | 2795eb7eaf6f68dfd6fbbcb8a3cf92224cf81f0d /man/add_err.Rd | |
parent | b14fe21e176f523e800793102fb5634e468b3165 (diff) |
Improve listing of weights in output, update NEWS
Diffstat (limited to 'man/add_err.Rd')
-rw-r--r-- | man/add_err.Rd | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/man/add_err.Rd b/man/add_err.Rd index a0a5106f..a0068b59 100644 --- a/man/add_err.Rd +++ b/man/add_err.Rd @@ -76,11 +76,12 @@ d_SFO_SFO_err <- add_err(d_SFO_SFO, function(x) 10, n = 3, seed = 123456789 ) 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 +# for nicer plotting later on. # Be quiet and use the faster Levenberg-Marquardt algorithm, as the datasets -# are easy and examples are run often +# are easy and examples are run often. Use only one core not to offend CRAN +# checks f_SFO_SFO <- mmkin(list("SFO-SFO" = m_SFO_SFO), - d_SFO_SFO_err, + d_SFO_SFO_err, cores = 1, quiet = TRUE, method.modFit = "Marq") plot(f_SFO_SFO) |