This is a free preview lesson of this course. Sign in to access it.
This lesson is a part of the course R Programming for Data Science
Relational Operators are used to compare values in R objects. There are six relational operators:
1| Operator | Description |
2| --- | --- |
3| `<` | Less than |
4| `>` | Greater than |
5| `<=` | Less than or equal to |
6| `>=` | Greater than or equal to |
7| `==` | Equal to |
8| `!=` | Not equal to |
9