diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2021-03-31 19:42:17 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2021-03-31 19:42:17 +0200 |
commit | 3a5463672c297b37c3c9135c8b144c48744c05d0 (patch) | |
tree | f28691df6359757133510ae44399ce71ecbfaa93 /R/plot.mkinfit.R | |
parent | 7bca4f58951c1c8cae63c4557102ae77a3aff616 (diff) |
Bug fix in plot.mkinfit
In residual plots, use xlab and xlim if appropriate
Diffstat (limited to 'R/plot.mkinfit.R')
-rw-r--r-- | R/plot.mkinfit.R | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/R/plot.mkinfit.R b/R/plot.mkinfit.R index 2e319aae..1d4ea543 100644 --- a/R/plot.mkinfit.R +++ b/R/plot.mkinfit.R @@ -278,7 +278,7 @@ plot.mkinfit <- function(x, fit = x, if (show_residuals) { mkinresplot(fit, obs_vars = row_obs_vars, standardized = standardized, pch_obs = pch_obs[row_obs_vars], col_obs = col_obs[row_obs_vars], - legend = FALSE, frame = frame, xlab = xlab) + legend = FALSE, frame = frame, xlab = xlab, xlim = xlim) } # Show error model plot if requested |