If ... Else - R (Conditions and If Statements) Flashcards

1
Q

98) Conditions and If Statements - R supports the usual logical conditions from mathematics:

A

== Equal x == y

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

99) Conditions and If Statements - R supports the usual logical conditions from mathematics:

A

!= Not equal x != y

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

100) Conditions and If Statements - R supports the usual logical conditions from mathematics:

A

>

Greater than	x > y
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

101) Conditions and If Statements - R supports the usual logical conditions from mathematics:

A

< Less than x < y

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

102) Conditions and If Statements - R supports the usual logical conditions from mathematics:

A

> = Greater than or equal to x >= y

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

103) Conditions and If Statements - R supports the usual logical conditions from mathematics:

A

<= Less than or equal to x <= y

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

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

a <- 33 b <- 200
if (b > a) {print(“b is > than a”)}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

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

a <- 33 b <- 33 if (b > a) {print(“b is > than a”)} else if (a == b) {print (“a and b are equal”)}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

106) IF ELSE - The else keyword catches anything which isn’t caught by the preceding conditions:

A

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”)}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

107) ELSE - You can also use else without else if:

A

a <- 200 b <- 33 if (b > a) {print(“b is > than a”)} else {print(“b is not greater than a”)}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly