Hi folks,

Pls help me to understand follow;

An Introduction to R

2.4 Logical vectors
http://cran.r-project.org/doc/manuals/R-intro.html#R-and-statistics

1)
> x
[1] 1 2 3 4 5
> temp <- x != 1
> temp
[1] FALSE  TRUE  TRUE  TRUE  TRUE
> 


2)
> x
[1] 1 2 3 4 5
> temp <- x > 1
> temp
[1] FALSE  TRUE  TRUE  TRUE  TRUE


Why NOT
> temp
[1] TRUE  FALSE  FALSE FALSE  FALSE

?


TIA

B.R.
Stephen L



______________________________________________
R-help@r-project.org mailing list
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