If ... Else - R (Conditions and If Statements) Flashcards
98) Conditions and If Statements - R supports the usual logical conditions from mathematics:
== Equal x == y
99) Conditions and If Statements - R supports the usual logical conditions from mathematics:
!= Not equal x != y
100) Conditions and If Statements - R supports the usual logical conditions from mathematics:
>
Greater than x > y
101) Conditions and If Statements - R supports the usual logical conditions from mathematics:
< Less than x < y
102) Conditions and If Statements - R supports the usual logical conditions from mathematics:
> = Greater than or equal to x >= y
103) Conditions and If Statements - R supports the usual logical conditions from mathematics:
<= Less than or equal to x <= y
104) IF - An “if statement” is written with the if keyword, and it is used to specify a block of code to be executed if a condition is TRUE:
a <- 33 b <- 200
if (b > a) {print(“b is > than a”)}
105) ELSE IF - The else if keyword is R’s way of saying “if the previous conditions were not true, then try this condition”:
a <- 33 b <- 33 if (b > a) {print(“b is > than a”)} else if (a == b) {print (“a and b are equal”)}
106) IF ELSE - The else keyword catches anything which isn’t caught by the preceding conditions:
a <- 200 b <- 33 if (b > a) {print(“b is > than a”)} else if (a == b) {print(“a and b are equal”)} else {print(“a is > than b”)}
107) ELSE - You can also use else without else if:
a <- 200 b <- 33 if (b > a) {print(“b is > than a”)} else {print(“b is not greater than a”)}