Skip to content

Commit cd869d0

Browse files
committed
Set seed at the start of the ggplot2 episode
This ensures we don't get unnecessary diffs when doing the monthly package update. It is fine to have this in an included = FALSE chunk as we don't mind learners getting a different output. The only goal is facilitating infrastructure maintenance.
1 parent 12d8ae5 commit cd869d0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

episodes/visualizing-ggplot.Rmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ exercises: 4
2727

2828
```{r setup, include=FALSE}
2929
knitr::opts_chunk$set(dpi = 200, out.height = 600, out.width = 600, R.options = list(max.print = 100))
30+
set.seed(20251007)
3031
```
3132

3233
We are going to be using **functions** from the **`ggplot2`** package to create visualizations of data. Functions are predefined bits of code that automate more complicated actions. R itself has many built-in functions, but we can access many more by loading other **packages** of functions and data into R.

0 commit comments

Comments
 (0)