Conditionals and Control Flow Flashcards
How do conditional operators like < and > work on characters and logicals?
Characters are compared alphabetically, while logicals are compared by replacing TRUE with 1 and FALSE with 0.
How do you write the AND, OR, and NOT operators in R?
&, |, and !
What is the difference between & and &&, or | and ||?
When used on a vector, && and || only examine the first element of the given vectors.
What is the recipe for an if, else-if, and else statement in R?
if (cond) {
expression
} else if (cond2) {
expression2
} else {
expression3
What denotes the MODULUS operation in R?
%%
What function counts the number of characters in a string?
nchar()
Ex: nchar(my_string)
Which function returns the length of the inputted vector?
length()
Ex: length(my_vector)