[R] Length of vector without NA's

Peter Langfelder peter.langfelder at gmail.com
Thu Sep 23 17:13:11 CEST 2010


> this following code:
>
> x<-c(1,2,NA)
> length(x)
>
> returns 3, correctly counting numbers as well as NA's. How can I
> exclude NA's from this count?
>

sum(!is.na(x))

Peter



More information about the R-help mailing list