Skip to content

Commit 97a305a

Browse files
fixing typo
1 parent 8dee49b commit 97a305a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/Data_Cleaning/Data_Cleaning.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ B. include `& is.na()`
378378

379379
## Summary
380380

381-
- `is.na()`,`any(is.na())`, `all(is.na())`,`count()`, and functions from `naniar` like `gg_miss_var()` and `miss_var_summary` can help determine if we have `NA` values
381+
- `is.na()`,`any(is.na())`, `count()`, and functions from `naniar` like `gg_miss_var()` and `miss_var_summary` can help determine if we have `NA` values
382382
- `miss_var_which()` can help you drop columns that have any missing values.
383383
- `filter()` automatically removes `NA` values - can't confirm or deny
384384
if condition is met (need `| is.na()` to keep them)
@@ -387,7 +387,7 @@ B. include `& is.na()`
387387
- `NA` values can change your calculation results
388388
- think about what `NA` values represent - don't drop them if you shouldn't
389389
- `na_if()` will make `NA` values for a particular value
390-
- `replace_na()` will replace `NA values with a particular value
390+
- `replace_na()` will replace `NA` values with a particular value
391391

392392
## Lab Part 1
393393

0 commit comments

Comments
 (0)