Operators - R Operators Flashcards
74) Operators are used to perform operations on VARIABLES and VALUES.
Operators
75) R divides the operators in the following groups: Arithmetic, Assignment, Comparison, Logical, Miscellaneous.
Operators Arithmetic, Assignment, Comparison, Logical, Miscellaneous
76) Arithmetic operators are used with numeric values to perform common mathematical operations:
Operators + - * /
77) Arithmetic operators are used with numeric values to perform common mathematical operations:
Operators ^, %%, %/%
78) Arithmetic operators are used with numeric values to perform common mathematical operations:
Operators ^ e.g. x ^ y (Exponent)
79) Arithmetic operators are used with numeric values to perform common mathematical operations:
Operators %% e.g. x %% y (Modulus (Remainder from division))
80) Arithmetic operators are used with numeric values to perform common mathematical operations:
Operators %/% e.g. x %/% y (Integer Division)
81) Assignment operators are used to assign values to variables:
Operators <-
82) Assignment operators are used to assign values to variables:
Operators «-
83) Assignment operators - It is also possible to turn the direction of the assignment operator.
Operators x <- 3 is equal to 3 -> x
84) Comparison operators are used to compare two values:
Operators == Equal x == y
85) Comparison operators are used to compare two values:
Operators != Not equal x != y
86) Comparison operators are used to compare two values:
Operators > Greater than x > y
87) Comparison operators are used to compare two values:
Operators < Less than x < y
88) Comparison operators are used to compare two values:
Operators >= Greater than or equal to x >= y
89) Comparison operators are used to compare two values:
Operators <= Less than or equal to x <= y
90) Logical operators are used to combine conditional statements:
Operators & Element-wise Logical AND operator. Returns TRUE if BOTH elements are TRUE
91) Logical operators are used to combine conditional statements:
Operators && Logical AND operator - Returns TRUE if BOTH statements are TRUE
|
92) Logical operators are used to combine conditional statements:
Operators | Elementwise- Logical OR operator. Returns TRUE if ONE of the statements is TRUE
93) Logical operators are used to combine conditional statements:
Operators || Logical OR operator. Returns TRUE if ONE of the statements is TRUE
94) Logical operators are used to combine conditional statements:
Operators ! Logical NOT - Returns FALSE if statement is TRUE
95) Miscellaneous operators are used to manipulate data:
Operators : Creates a series of numbers in a sequence x <- 1:10
96) Miscellaneous operators are used to manipulate data:
Operators %in% Find out if an element belongs to a vector x %in% y
97) Miscellaneous operators are used to manipulate data:
Operators %% Matrix Multiplication x <- Matrix1 %% Matrix2