diff options
Diffstat (limited to 'man/mkinfit.Rd')
-rw-r--r-- | man/mkinfit.Rd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/man/mkinfit.Rd b/man/mkinfit.Rd index 45036361..89d2ddd6 100644 --- a/man/mkinfit.Rd +++ b/man/mkinfit.Rd @@ -28,8 +28,8 @@ mkinfit( rtol = 1e-10, n.outtimes = 100, error_model = c("const", "obs", "tc"), - error_model_algorithm = c("auto", "d_3", "direct", "twostep", "threestep", "fourstep", - "IRLS", "OLS"), + error_model_algorithm = c("auto", "d_3", "direct", "twostep", "threestep", + "fourstep", "IRLS", "OLS"), reweight.tol = 1e-08, reweight.max.iter = 10, trace_parms = FALSE, @@ -238,13 +238,13 @@ SFO_SFO <- mkinmod( # Fit the model to the FOCUS example dataset D using defaults print(system.time(fit <- mkinfit(SFO_SFO, FOCUS_2006_D, solution_type = "eigen", quiet = TRUE))) -coef(fit) +parms(fit) endpoints(fit) \dontrun{ # deSolve is slower when no C compiler (gcc) was available during model generation print(system.time(fit.deSolve <- mkinfit(SFO_SFO, FOCUS_2006_D, solution_type = "deSolve"))) -coef(fit.deSolve) +parms(fit.deSolve) endpoints(fit.deSolve) } |