diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2014-07-24 09:58:55 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2014-07-24 09:58:55 +0200 |
commit | 8be01094ecbc65d4bdf1e7f819ef01b7a252b39d (patch) | |
tree | ce37e5284d37cb1ebfcd4c3e30f4c07577b8a07e /R/mkinresplot.R | |
parent | 4c6f29fe2a3ece5a85160b891c89ce0f55299c11 (diff) |
Avoid artificial zero residual in mkinresplot
Diffstat (limited to 'R/mkinresplot.R')
-rw-r--r-- | R/mkinresplot.R | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/R/mkinresplot.R b/R/mkinresplot.R index c9a801fd..82ffd2cb 100644 --- a/R/mkinresplot.R +++ b/R/mkinresplot.R @@ -36,7 +36,8 @@ mkinresplot <- function (object, col_obs <- pch_obs <- 1:length(obs_vars)
names(col_obs) <- names(pch_obs) <- obs_vars
- plot(0, xlab = xlab, ylab = ylab,
+ plot(0, type = "n",
+ xlab = xlab, ylab = ylab,
xlim = xlim,
ylim = c(-1.2 * maxabs, 1.2 * maxabs), ...)
|