diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2016-06-27 10:02:49 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2016-06-27 10:02:49 +0200 |
commit | b14fe21e176f523e800793102fb5634e468b3165 (patch) | |
tree | a67888ca4da48f0ce191a23be706268e104aa01e /man/mmkin.Rd | |
parent | 43c0ae8431440bab723b35909d43f51434288c33 (diff) |
Show chi2 in plot.mkinfit, round with signif
Diffstat (limited to 'man/mmkin.Rd')
-rw-r--r-- | man/mmkin.Rd | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/man/mmkin.Rd b/man/mmkin.Rd index d088e804..689a1eb4 100644 --- a/man/mmkin.Rd +++ b/man/mmkin.Rd @@ -67,10 +67,13 @@ endpoints(fits[["SFO_lin", 2]]) # Plot.mkinfit handles rows or columns of mmkin result objects plot(fits.0[1, ]) +plot(fits.0[1, ], obs_var = c("M1", "M2")) 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) +# Use double brackets to extract a single mkinfit object, which will be plotted +# by plot.mkinfit +plot(fits.0[[1, 1]], sep_obs = TRUE, show_residuals = TRUE, show_errmin = TRUE) +# Plotting with mmkin (single brackets, extracting an mmkin object) does not +# allow to plot the observed variables separately plot(fits.0[1, 1]) } } |