Relational Operators
In this lesson, we will learn the basic relational operations in R and how to use them.
What are Relational Operators?
Relational Operators are used for comparing objects. They return a boolean variable, i.e., TRUE
or FALSE
.
Relational operators in R language
Let’s have a look at the code: ...