- is.na(),- any(is.na()),- all(is.na()),- count(), and functions from- naniarlike- gg_miss_var()and- miss_var_summarycan help determine if we have- NAvalues
- miss_var_which()can help you drop columns that have any missing values.
- filter()automatically removes- NAvalues
- drop_na()can help you remove- NAvalues
- NAvalues can change your calculation results
- think about what NAvalues represent - don’t drop them if you shouldn’t
- replace_na()will replace `NA values with a particular value