Answers for "count na's 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

Browse Popular Code Answers by Language