Hi,

I need to understand the inconsistent behaviour of & and I operators when
used with NA.

The code below explains this inconsistency

> TRUE & NA
[1] NA

> FALSE & NA
[1] FALSE

> TRUE & NA
[1] NA

> FALSE | NA
[1] NA

> TRUE | NA
[1] TRUE

> TRUE == NA
[1] NA

> FALSE == NA
[1] NA

        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to