Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Errors
Summary

Instruction

Sometimes you don't need to see which cells have missing data. We can, for example, count missing values using the sum() function. The simple way to do this is:

sum(is.na(census2017))

Exercise

Find the number of missing values in census2018 using the sum() and is.na() functions.