Skip to content

Commit

Permalink
Make variable names consistent in data-transform.qmd (#1604)
Browse files Browse the repository at this point in the history
  • Loading branch information
granieri authored Nov 30, 2023
1 parent 85d2209 commit bfa59fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data-transform.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ We'll come back to discuss missing values in detail in @sec-missing-values, but
flights |>
group_by(month) |>
summarize(
delay = mean(dep_delay, na.rm = TRUE)
avg_delay = mean(dep_delay, na.rm = TRUE)
)
```

Expand All @@ -605,7 +605,7 @@ You'll learn various useful summaries in the upcoming chapters, but one very use
flights |>
group_by(month) |>
summarize(
delay = mean(dep_delay, na.rm = TRUE),
avg_delay = mean(dep_delay, na.rm = TRUE),
n = n()
)
```
Expand Down

0 comments on commit bfa59fa

Please sign in to comment.