diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2016-06-28 08:06:03 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2016-06-28 08:06:03 +0200 |
commit | 48a314feb6538774504c2b118cdbaededd2eb25b (patch) | |
tree | 338d602d0a5398459926b2a2022ee295ba812540 /vignettes/FOCUS_D.Rmd | |
parent | 87649db26a38688891a683fe42db3da1edd46640 (diff) |
Attempts to reduce vignette size
Reducing the size of some figures and switching of retina figures
in the preamble only gives a small decrease in vignette size,
but may be enough to get the size of the doc directory below 5 MB
to avoid the NOTE in the corresponding check (which I did not get
locally, nor on winbuilder using r-devel.
Diffstat (limited to 'vignettes/FOCUS_D.Rmd')
-rw-r--r-- | vignettes/FOCUS_D.Rmd | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/vignettes/FOCUS_D.Rmd b/vignettes/FOCUS_D.Rmd index 4c65b80a..4edc7bf2 100644 --- a/vignettes/FOCUS_D.Rmd +++ b/vignettes/FOCUS_D.Rmd @@ -6,6 +6,7 @@ output: html_document:
mathjax: null
theme: united
+ fig_retina: null
vignette: >
%\VignetteIndexEntry{Example evaluation of FOCUS Example Dataset D}
%\VignetteEngine{knitr::rmarkdown}
@@ -52,14 +53,14 @@ 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.
-```{r, fig.height = 7}
+```{r, fig.height = 5}
plot(fit, show_residuals = TRUE)
```
Confidence intervals for the parameter estimates are obtained using the `mkinparplot` function.
-```{r}
+```{r, fig.height = 4}
mkinparplot(fit)
```
|