Skip to content

Commit a820cec

Browse files
committed
Fix issue #33
1 parent af372ad commit a820cec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

05_Manipulating_data.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ One note of explanation in the `mean` command: there is an argument `na.rm`. Thi
401401
hf_mutate2[93, ]
402402
```
403403

404-
Notice that the all the times are missing. There are a bunch of rows like this. Since there is not always an arrival delay listed, the `ArrDelay` variable doesn't always have a value, and if `ArrDelay` is `NA`, the `late` variable will be too. So if we try to calculate the mean with just the `mean` command, this happens:
404+
Notice that all the times are missing. There are a bunch of rows like this. Since there is not always an arrival delay listed, the `ArrDelay` variable doesn't always have a value, and if `ArrDelay` is `NA`, the `late` variable will be too. So if we try to calculate the mean with just the `mean` command, this happens:
405405

406406
```{r}
407407
mean(hf_mutate2$late)

0 commit comments

Comments
 (0)