Joelle
9/17/2019 - 2:54 PM

Looking at NA's

# If You need NA count of all — 
table(is.na(z))

# If you need NA count Column wise – 
sapply(z, function(x) sum(is.na(x)))

# If you need NA count Row wise — 
rowSums(is.na(z))