diff --git a/episodes/07-control-flow.Rmd b/episodes/07-control-flow.Rmd index 866c6312f..ff4feca60 100644 --- a/episodes/07-control-flow.Rmd +++ b/episodes/07-control-flow.Rmd @@ -47,9 +47,6 @@ if (condition is true) { Say, for example, that we want R to print a message if a variable `x` has a particular value: ```{r} -# sample a random number from a Poisson distribution -# with a mean (lambda) of 8 - x <- 8 if (x >= 10) {