From 9b181217bcbaebef39c7abf122d2f3c01d1c86cf Mon Sep 17 00:00:00 2001 From: Christian <63231654+c-hoh@users.noreply.github.com> Date: Wed, 27 Apr 2022 15:02:23 +0200 Subject: [PATCH] Minor clarification. (#1012) Delayed and cancelled flights are not the same thing. Co-authored-by: Christian Hohenfeld --- numbers.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numbers.Rmd b/numbers.Rmd index 965d08d..c6977e4 100644 --- a/numbers.Rmd +++ b/numbers.Rmd @@ -205,7 +205,7 @@ flights |> ) ``` -We can combine that with the `mean(is.na(x))` trick from Section \@ref(logical-summaries) to see how the proportion of delayed flights varies over the course of the day. +We can combine that with the `mean(is.na(x))` trick from Section \@ref(logical-summaries) to see how the proportion of cancelled flights varies over the course of the day. The results are shown in Figure \@ref(fig:prop-cancelled). ```{r prop-cancelled}