Answers for "how to count total number of na rows in r"

R
6

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 "how to count total number of na rows in r"

Browse Popular Code Answers by Language