Displaying 1 result from an estimated 1 matches for "devoil".
Did you mean:
devil
2001 Apr 02
1
na.omit() (PR#889)
Full_Name: Peter deVoil
Version: 1.1
OS: i686-pc-linux-gnu
Submission from: (NULL) (203.25.1.208)
Hi,
> zz <- c(3.2, 4.5, NA)
> zzz <- c(3.2, 4.5, 5.5)
If there are no NAs in the list:
---
> length(na.omit(zzz))
[1] 0
---
I expected 3.
But, if there are NAs, the correct answer is returned
---
> le...