A loop allows you to execute the same piece of code multiple times. Each execution is called an iteration. A for loop allows you to specify the number of iterations or go through a data structure’s length.
You can use the loop_variable
inside the loop body but it only has meaning inside the loop.
A while loop on the other hand repeats code while a condition is true. You want the condition to start as true, and some value should be altered in the loop so that the condition becomes false at some point. ```
# how to define a for loopfor (loop_variable in sequence) {# code to repeat}# how to define a while loopwhile (condition_to_check_every_iteration) {# code to repeat}
A function is a collection of several lines of code. By calling the function’s name, we execute the code inside of it. We can call the function over and over again, with different arguments. An example of calling a function is sum(34, 35, 10)
, which will return 79
.
See left for syntax for defining a function.
Parameters are the inputs in the function’s definition and return
statements indicate where the function should stop executing and what should be given back when the function is called.
To apply a function onto all the elements in a data structure, we can use one of the apply
functions with that function’s name.
apply()
is used on a two-dimensional data structure, and margin value indicates either row or column.sapply()
is used on any data structure and returns a vector or matrix depending on the number of dimensions.lapply()
is used on any data structure and always returns a list.# define a functionfunction_name <- function(parameter_1, parameter_2, ....) {# do something with parameter_1 and parameter_2return(some_value)}apply(data_structure, margin_value, function_name)sapply(data structure, function_name)lapply(data_structure, function_name)
A vector is a data structure that can hold multiple objects of the same data type. For example, c(45, 25, 89, 10)
creates a numerical vector. To access elements, use the [
]
brackets with indexing starting from 1.
my_string_vector <- c("this", "is", "an", "example", "vector")my_string_vector[3] # returns "an"my_boolean_vector <- c(TRUE, FALSE, FALSE)my_numerical_vector <- c(0.4, 0.9, 1, 0.45, 1.2, 0.33)# R will force the same type even if you input different types to c()my_vector <- c("word", 45, 12, FALSE)# result: a vector of strings "word" "45" "12" "FALSE"
In R, a list can store a variety of data types and data structures in a single variable. This means a list can hold individual strings and numbers, but also vectors and lists.
To access a single element, use [[
]]
double brackets. A list is useful for organization because you can name the elements inside it and select them using $
my_list <- list("Elephant", FALSE, 900, 80.3, list("pencil", "pens"))my_list[[4]] # returns 80.3my_longer_list <- list(misc = my_list, notes = c("g", "b", "d", "g"))my_longer_list[[1]]# returns the contents of my_listmy_longer_list$misc# returns the contents of my_listmy_longer_list$notes# returns "g" "b" "d" "g"
In R, a matrix is a two-dimensional data structure that holds objects of the same type. To create one, use the matrix()
function with a vector representing the data (R will interpret whether it is repeating or non-repeating), nrow
equal to the number of rows, and ncol
equal to the number of columns.
To access a single element inside a matrix called ex_matrix
, you can look up the item in the r
th row and the c
th column like so: ex_matrix[r, ]
.
To access the entire r
th row, you can refer to it like so: ex_matrix[r, c]
. To access the c
th column, use ex_matrix[ , c]
.
# will create a 3-by-3 matrix with the vectors being filled column-wise (default)my_matrix <- matrix(c("a", "b", "e", "k", "e", "w", "g", "x", "t"), nrow = 3, ncol = 3)# result:# "a" "k" "g"# "b" "e" "x"# "e" "w" "t"single_element <- my_matrix[1, 3]# returns "g"second_row <- my_matrix[2,]# returns: "b" "e" "x"second_col <- my_matrix[,2]# returns: "k" "e" "w"
Control flow involves the program deciding which code to execute. The decision-making is established through conditional statements, i.e. if
, else if
, and else
. Each condition should compute to a logical TRUE
or FALSE
. You can use comparison operators like !
, &
and |
to combine logical values.
if (condition_to_check) {# execute code and don't check any more conditions} else if (other_condition_to_check & and_this_condition_to_check) {# execute code only if both are true and don't check any more conditions} else if (either_this_condition | or_this_condition ) {# execute code if either condition is true and don't go to else} else {# the default code if none of the conditions above are true}