Skip to content

Commit bd082c8

Browse files
committed
specify package when loading data
1 parent 60ce3bf commit bd082c8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

vignettes/Chapter05.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -548,8 +548,8 @@ We revisit the accidents and the eye tracking data sets and compute means
548548
and variances.
549549

550550
```{r}
551-
data("accidents")
552-
data("eyetracking")
551+
data("accidents", package = "BayesianLearningCode")
552+
data("eyetracking", package = "BayesianLearningCode")
553553
y1 <- accidents[, c("seniors_accidents", "children_accidents")]
554554
y2 <- eyetracking$anomalies
555555
N <- c(rep(nrow(y1), ncol(y1)), length(y2))

0 commit comments

Comments
 (0)