Operators - R Operators Flashcards

1
Q

74) Operators are used to perform operations on VARIABLES and VALUES.

A

Operators

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

75) R divides the operators in the following groups: Arithmetic, Assignment, Comparison, Logical, Miscellaneous.

A

Operators Arithmetic, Assignment, Comparison, Logical, Miscellaneous

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

76) Arithmetic operators are used with numeric values to perform common mathematical operations:

A

Operators + - * /

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

77) Arithmetic operators are used with numeric values to perform common mathematical operations:

A

Operators ^, %%, %/%

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

78) Arithmetic operators are used with numeric values to perform common mathematical operations:

A

Operators ^ e.g. x ^ y (Exponent)

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

79) Arithmetic operators are used with numeric values to perform common mathematical operations:

A

Operators %% e.g. x %% y (Modulus (Remainder from division))

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

80) Arithmetic operators are used with numeric values to perform common mathematical operations:

A

Operators %/% e.g. x %/% y (Integer Division)

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

81) Assignment operators are used to assign values to variables:

A

Operators <-

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

82) Assignment operators are used to assign values to variables:

A

Operators «-

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

83) Assignment operators - It is also possible to turn the direction of the assignment operator.

A

Operators x <- 3 is equal to 3 -> x

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

84) Comparison operators are used to compare two values:

A

Operators == Equal x == y

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

85) Comparison operators are used to compare two values:

A

Operators != Not equal x != y

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

86) Comparison operators are used to compare two values:

A

Operators > Greater than x > y

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

87) Comparison operators are used to compare two values:

A

Operators < Less than x < y

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

88) Comparison operators are used to compare two values:

A

Operators >= Greater than or equal to x >= y

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

89) Comparison operators are used to compare two values:

A

Operators <= Less than or equal to x <= y

17
Q

90) Logical operators are used to combine conditional statements:

A

Operators & Element-wise Logical AND operator. Returns TRUE if BOTH elements are TRUE

18
Q

91) Logical operators are used to combine conditional statements:

A

Operators && Logical AND operator - Returns TRUE if BOTH statements are TRUE
|

19
Q

92) Logical operators are used to combine conditional statements:

A

Operators | Elementwise- Logical OR operator. Returns TRUE if ONE of the statements is TRUE

20
Q

93) Logical operators are used to combine conditional statements:

A

Operators || Logical OR operator. Returns TRUE if ONE of the statements is TRUE

21
Q

94) Logical operators are used to combine conditional statements:

A

Operators ! Logical NOT - Returns FALSE if statement is TRUE

22
Q

95) Miscellaneous operators are used to manipulate data:

A

Operators : Creates a series of numbers in a sequence x <- 1:10

23
Q

96) Miscellaneous operators are used to manipulate data:

A

Operators %in% Find out if an element belongs to a vector x %in% y

24
Q

97) Miscellaneous operators are used to manipulate data:

A

Operators %% Matrix Multiplication x <- Matrix1 %% Matrix2