AND or Operators - R AND or Operators Flashcards
1
Q
AND & - The & symbol (and) is a logical operator, and is used to combine conditional statements:
A
a <- 200 b <- 33 c <- 500
if (a > b & c > a) {print(“both conditions are true”)}
2
Q
OR I - The | symbol (or) is a logical operator, and is used to combine conditional statements:
A
a <- 200 b <- 33 c <- 500
if (a > b | a > c) {print(“At least one of the conditions is true”)}