diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2015-06-20 18:38:03 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2015-06-20 18:38:03 +0200 |
commit | f0da2e311eb33fa5851956e958e91c25b4da5c1e (patch) | |
tree | c0c1b18dbabc7582826401384e911e9bfb25323d | |
parent | fea21a504e7ce3df45c8c35d171b7e3856316126 (diff) |
Reorganize transform_odeparms example, reduce check time
-rw-r--r-- | man/transform_odeparms.Rd | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/man/transform_odeparms.Rd b/man/transform_odeparms.Rd index 1385a896..cc1d1611 100644 --- a/man/transform_odeparms.Rd +++ b/man/transform_odeparms.Rd @@ -66,9 +66,13 @@ SFO_SFO <- mkinmod( m1 = list(type = "SFO")) # Fit the model to the FOCUS example dataset D using defaults fit <- mkinfit(SFO_SFO, FOCUS_2006_D) -fit.2 <- mkinfit(SFO_SFO, FOCUS_2006_D, transform_rates = FALSE) summary(fit, data=FALSE) # See transformed and backtransformed parameters + +\dontrun{ +fit.2 <- mkinfit(SFO_SFO, FOCUS_2006_D, transform_rates = FALSE) summary(fit.2, data=FALSE) +} + initials <- fit$start$value names(initials) <- rownames(fit$start) transformed <- fit$start_transformed$value |