Make variable names consistent in data-transform.qmd (#1604)
This commit is contained in:
parent
85d220958f
commit
bfa59fa474
|
@ -594,7 +594,7 @@ We'll come back to discuss missing values in detail in @sec-missing-values, but
|
||||||
flights |>
|
flights |>
|
||||||
group_by(month) |>
|
group_by(month) |>
|
||||||
summarize(
|
summarize(
|
||||||
delay = mean(dep_delay, na.rm = TRUE)
|
avg_delay = mean(dep_delay, na.rm = TRUE)
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -605,7 +605,7 @@ You'll learn various useful summaries in the upcoming chapters, but one very use
|
||||||
flights |>
|
flights |>
|
||||||
group_by(month) |>
|
group_by(month) |>
|
||||||
summarize(
|
summarize(
|
||||||
delay = mean(dep_delay, na.rm = TRUE),
|
avg_delay = mean(dep_delay, na.rm = TRUE),
|
||||||
n = n()
|
n = n()
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue