Answers for "different ways to count the number of na values correctly in r"

R
7

how to count the number of NA in r

sum(is.na(df$col))
Posted by: Guest on July-31-2020
2

r count number of na

sum(is.na(df))
Posted by: Guest on June-19-2020

Code answers related to "different ways to count the number of na values correctly in r"

Browse Popular Code Answers by Language