diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2016-06-28 00:24:46 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2016-06-28 00:24:46 +0200 |
commit | 4672c2b3fd6c22e63b00ee5038998dd68a885c25 (patch) | |
tree | e06d5baaf855b19259360687c88abf9f133a43b9 /R | |
parent | 2647aaf1b879365c11700eed099e661febd08387 (diff) |
Convenience wrapper plot_sep, further vignette updates
Diffstat (limited to 'R')
-rw-r--r-- | R/plot.mkinfit.R | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/R/plot.mkinfit.R b/R/plot.mkinfit.R index 3ca18c19..303effb5 100644 --- a/R/plot.mkinfit.R +++ b/R/plot.mkinfit.R @@ -187,3 +187,9 @@ plot.mkinfit <- function(x, fit = x, } if (do_layout) par(oldpar, no.readonly = TRUE) } +# Convenience function for switching on some features of mkinfit +# that have not been made the default to keep compatibility +plot_sep <- function(fit, sep_obs = TRUE, show_residuals = TRUE, show_errmin = TRUE, ...) { + plot.mkinfit(fit, sep_obs = TRUE, show_residuals = TRUE, + show_errmin = TRUE, ...) +} |