diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2016-06-25 21:07:11 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2016-06-25 21:16:37 +0200 |
commit | 43c0ae8431440bab723b35909d43f51434288c33 (patch) | |
tree | ef9b4d8df9fc64c9170242dfb355ef041ace9a60 /man/mmkin.Rd | |
parent | 693beea972cad4633c1d8baf422913ff3e8d709d (diff) |
Fix the plot margins for combined plots
Diffstat (limited to 'man/mmkin.Rd')
-rw-r--r-- | man/mmkin.Rd | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/man/mmkin.Rd b/man/mmkin.Rd index 44caf8d2..d088e804 100644 --- a/man/mmkin.Rd +++ b/man/mmkin.Rd @@ -45,16 +45,17 @@ mmkin(models, datasets, } \examples{ \dontrun{ -m_synth_SFO_lin <- mkinmod(parent = list(type = "SFO", to = "M1"), - M1 = list(type = "SFO", to = "M2"), - M2 = list(type = "SFO"), use_of_ff = "max") +m_synth_SFO_lin <- mkinmod(parent = mkinsub("SFO", "M1"), + M1 = mkinsub("SFO", "M2"), + M2 = mkinsub("SFO"), use_of_ff = "max") -m_synth_FOMC_lin <- mkinmod(parent = list(type = "FOMC", to = "M1"), - M1 = list(type = "SFO", to = "M2"), - M2 = list(type = "SFO"), use_of_ff = "max") +m_synth_FOMC_lin <- mkinmod(parent = mkinsub("FOMC", "M1"), + M1 = mkinsub("SFO", "M2"), + M2 = mkinsub("SFO"), use_of_ff = "max") models <- list(SFO_lin = m_synth_SFO_lin, FOMC_lin = m_synth_FOMC_lin) datasets <- lapply(synthetic_data_for_UBA_2014[1:3], function(x) x$data) +names(datasets) <- paste("Dataset", 1:3) time_default <- system.time(fits.0 <- mmkin(models, datasets)) time_1 <- system.time(fits.1 <- mmkin(models, datasets, cores = 1)) @@ -66,9 +67,11 @@ endpoints(fits[["SFO_lin", 2]]) # Plot.mkinfit handles rows or columns of mmkin result objects plot(fits.0[1, ]) +plot(fits.0[, 1]) # Double brackets to select a single mkinfit object, which will be # plotted by plot.mkinfit plot(fits.0[[1, 1]], sep_obs = TRUE, show_residuals = TRUE) +plot(fits.0[1, 1]) } } \keyword{ optimize } |