you can use which and any. There is no NA as you see:
which(is.na(iris))
integer(0)
and
any(is.na(iris))
[1] FALSE
CLICK HERE to find out more related problems solutions.
you can use which and any. There is no NA as you see:
which(is.na(iris))
integer(0)
and
any(is.na(iris))
[1] FALSE
CLICK HERE to find out more related problems solutions.