You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Comparison operators return TRUE or FALSE. There are many useful comparison operators in R:
| operator | meaning |
|----------|---------|
| `==` | equal |
| `!=` | not equal |
| `<` | less than |
| `>` | greater than |
| `<=` | less than or equal to |
| `>=` | greater than or equal to |
Also need & (and) and | (or).
This should go near where they're first introduced.
The text was updated successfully, but these errors were encountered:
Also need
&
(and) and|
(or).This should go near where they're first introduced.
The text was updated successfully, but these errors were encountered: