Skip to content
christophergandrud edited this page May 24, 2012 · 2 revisions

You can use the following logical operators in R:

Operator Meaning
== Equal to
> Greater than
< Less than
>= Greater than or equal to
!= Not equal to
!x Not x
`x y`
x & y x or y
isTRUE(x) Test if x is true

Thanks to the Quick-R Guide