Skip to content

Commit ac8edd7

Browse files
committed
fixes graphics layout
1 parent 6b594c5 commit ac8edd7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

vignettes/Chapter07.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ We now create Figure 7.9 via simple transformations.
545545
if (pdfplots) {
546546
pdf("7-2_9.pdf", width = 9, height = 3)
547547
}
548-
par(mfrow = c(1, 1), mar = c(2.6, 1.5, 1.5, .1), mgp = c(1.5, .5, 0), lwd = 2)
548+
par(mfrow = c(1, 2), mar = c(2.6, 1.5, 1.5, .1), mgp = c(1.5, .5, 0), lwd = 2)
549549
mu <- sigma2 <- matrix(NA_real_, ndraws, 3, dimnames = list(NULL, order = 0:2))
550550
551551
mu[, "0"] <- res0$betas[, 1]
@@ -591,9 +591,9 @@ we proceed as above.
591591

592592
```{r, echo = -c(1:2)}
593593
if (pdfplots) {
594-
pdf("7-2_9.pdf", width = 9, height = 3)
594+
pdf("7-2_10.pdf", width = 9, height = 3)
595595
}
596-
par(mfrow = c(1, 1), mar = c(2.6, 1.5, 1.5, .1), mgp = c(1.5, .5, 0), lwd = 2)
596+
par(mfrow = c(1, 2), mar = c(2.6, 1.5, 1.5, .1), mgp = c(1.5, .5, 0), lwd = 2)
597597
mu <- sigma2 <- list()
598598
599599
mu[["0"]] <- res20$betas[, 1]

0 commit comments

Comments
 (0)