diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2016-06-28 00:44:48 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2016-06-28 01:30:00 +0200 |
commit | ef7ccf68e086bac3e75858bd4b97e3a2c6872aa1 (patch) | |
tree | e1b9e55736b0961843e84c60caeb9117e1c35c6d /vignettes/FOCUS_L.Rmd | |
parent | 4672c2b3fd6c22e63b00ee5038998dd68a885c25 (diff) |
Avoid multicore fits in vignettes for passing CRAN checks
Also a small fix to the FOCUS Z vignette, and an update
of the static documentation generated by staticdocs.
Diffstat (limited to 'vignettes/FOCUS_L.Rmd')
-rw-r--r-- | vignettes/FOCUS_L.Rmd | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/vignettes/FOCUS_L.Rmd b/vignettes/FOCUS_L.Rmd index 387c8fc7..ed480643 100644 --- a/vignettes/FOCUS_L.Rmd +++ b/vignettes/FOCUS_L.Rmd @@ -196,7 +196,8 @@ have to be passed in a list, in this case a named list holding only the L3 dataset prepared above.
```{r fig.height = 8}
-mm.L3 <- mmkin(c("SFO", "FOMC", "DFOP"),
+# Only use one core here, not to offend the CRAN checks
+mm.L3 <- mmkin(c("SFO", "FOMC", "DFOP"), cores = 1,
list("FOCUS L3" = FOCUS_2006_L3_mkin), quiet = TRUE)
plot(mm.L3)
```
@@ -246,7 +247,8 @@ FOCUS_2006_L4_mkin <- mkin_wide_to_long(FOCUS_2006_L4) Fits of the SFO and FOMC models, plots and summaries are produced below:
```{r fig.height = 6}
-mm.L4 <- mmkin(c("SFO", "FOMC"),
+# Only use one core here, not to offend the CRAN checks
+mm.L4 <- mmkin(c("SFO", "FOMC"), cores = 1,
list("FOCUS L4" = FOCUS_2006_L4_mkin),
quiet = TRUE)
plot(mm.L4)
|