diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2014-04-26 08:42:29 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2014-04-26 08:42:29 +0200 |
commit | 4a91212601c379498202f8a5cecdee085f2cbe0a (patch) | |
tree | 7dfbc3993949c86b4e9cec4fa9cf98b3a7889f1b /man/plot.mkinfit.Rd | |
parent | 3ee9215cf50e9a5cf81195f051fdd8a9ae68dad8 (diff) |
Fix the default case for obs_vars in plot.mkinfit()
Diffstat (limited to 'man/plot.mkinfit.Rd')
-rw-r--r-- | man/plot.mkinfit.Rd | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/man/plot.mkinfit.Rd b/man/plot.mkinfit.Rd index 41682ad5..4ae82a50 100644 --- a/man/plot.mkinfit.Rd +++ b/man/plot.mkinfit.Rd @@ -10,7 +10,7 @@ } \usage{ \method{plot}{mkinfit}(x, fit = x, - obs_vars = vector(), + obs_vars = names(fit$mkinmod$map), xlab = "Time", ylab = "Observed", xlim = range(fit$data$time), ylim = c(0, max(fit$data$observed, na.rm = TRUE)), col_obs = 1:length(fit$mkinmod$map), pch_obs = col_obs, @@ -26,7 +26,8 @@ } \item{obs_vars}{ A character vector of names of the observed variables for which the - data and the model should be plotted. + data and the model should be plotted. Defauls to all observed variables + in the model. } \item{xlab}{ label for the x axis. |