Minor clarification. (#1012)

Delayed and cancelled flights are not the same thing.

Co-authored-by: Christian Hohenfeld <git@hohenfeld.is>
This commit is contained in:
Christian 2022-04-27 15:02:23 +02:00 committed by GitHub
parent 97b074509d
commit 9b181217bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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}