diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2014-11-12 12:46:15 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2014-11-12 12:46:15 +0100 |
commit | 3516b626be1aeb639d0735e79449424d2e987d7a (patch) | |
tree | 3b36c2f2e82e0eb9292fc8a6ad39f08f240b9325 | |
parent | 79fdb787e2e79a70e27cf8a3191aa6a0ac2ac2e3 (diff) |
Fix a typo in the list of possible arguments
Thanks to Michael Brauer for the hint
-rw-r--r-- | R/mkinfit.R | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/R/mkinfit.R b/R/mkinfit.R index e7cab1ee..59598631 100644 --- a/R/mkinfit.R +++ b/R/mkinfit.R @@ -28,7 +28,7 @@ mkinfit <- function(mkinmod, observed, fixed_initials = names(mkinmod$diffs)[-1],
solution_type = "auto",
method.ode = "lsoda",
- method.modFit = c("Port", "Marq", "SANN", "Nelder-Mead", "BFSG", "CG", "L-BFGS-B"),
+ method.modFit = c("Port", "Marq", "SANN", "Nelder-Mead", "BFGS", "CG", "L-BFGS-B"),
maxit.modFit = "auto",
control.modFit = list(),
transform_rates = TRUE,
|