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]]
______________________________________________
[email protected] 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.