diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2016-11-17 17:38:13 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2016-11-17 17:38:13 +0100 |
commit | 38194642f58a798207663d469e8241265de95717 (patch) | |
tree | 59ac2fd8855368a2dcbb11daf0890dca64fd0bfb /vignettes/FOCUS_D.Rmd | |
parent | b2779693fad072b6bdf5046ca2f1e9e9655eb5a2 (diff) |
Use plot_sep in FOCUS D vignette
Diffstat (limited to 'vignettes/FOCUS_D.Rmd')
-rw-r--r-- | vignettes/FOCUS_D.Rmd | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/vignettes/FOCUS_D.Rmd b/vignettes/FOCUS_D.Rmd index 57b2d9d6..998cefa4 100644 --- a/vignettes/FOCUS_D.Rmd +++ b/vignettes/FOCUS_D.Rmd @@ -51,16 +51,17 @@ fit <- mkinfit(SFO_SFO, FOCUS_2006_D, quiet = TRUE) ```
A plot of the fit including a residual plot for both observed variables is obtained
-using the `plot` method for `mkinfit` objects.
+using the `plot_sep` method for `mkinfit` objects, which shows separate graphs for
+all compounds and their residuals.
-```{r plot, fig.height = 5}
-plot(fit, show_residuals = TRUE)
+```{r plot, fig.height = 6, fig.width = 8}
+plot_sep(fit, lpos = c("topright", "bottomright"))
```
Confidence intervals for the parameter estimates are obtained using the `mkinparplot` function.
-```{r plot_2, fig.height = 4}
+```{r plot_2, fig.height = 4, fig.width = 8}
mkinparplot(fit)
```
|