print("hello! today we are talking about vectors, functions, and the like.")
[1] "hello! today we are talking about vectors, functions, and the like."
4.1.1 Learning Objectives
- Define the following terms as they relate to R: call, function, arguments, options.
- Do simple arithmetic operations in R using values and objects.
- Call functions and use arguments to change their default options.
- Understand the logic and use of if else statements.
- Define our own functions.
- Create for and while loops.
- Inspect the content of vectors and manipulate their content.
4.1.2 Learning outline
- Creating objects/variables in R
- If else statements
- Using and writing functions
- Vectors and data types
- Subsetting vectors
- Missing data
- Loops and vectorization
Note: Parts of this lecture were originally created by combining contributions to Data Carpentry and has been modified to align with the aims of EEB313.
print("hello! today we are talking about vectors, functions, and the like.")
[1] "hello! today we are talking about vectors, functions, and the like."
When using Rstudio, it is best practice to turn off automatic save and restore of global workspace. To do this, go to the “Tools” menu in Rstudio, select “Global Options”, and make sure the “Restore .RData into workspace at startup” box is not selected For good measure, set the “Save workspace to .RData on exit” to “Never”. The command to clear your workspace in a script is
rm(list=ls())
Today we will go through some R basics, including how to create objects, assign values, define functions, and use for and while loops to iteratively preform calculations.
As we saw in our first class, you can get output from R simply by typing math in the console:
3 + 5
[1] 8
12 / 7
[1] 1.714286
However, to do more complex calcualtions, we need to assign values to objects.
<- 3
x <- x + 5
y y
[1] 8
You can name an object in R almost anything you want:
<- 3
joel + 5 joel
[1] 8
TRUE <- 3
Error in TRUE <- 3: invalid (do_set) left-hand side to assignment
### not allowed to overwrite logical operators
<- 3
T ### for some reason this is allowed, but problematic
### T and TRUE are often used interchangeably
There are some names that cannot be used because they are they are reserved for commands, operators, functions, etc. in base R (e.g., while
, TRUE
). See ?Reserved
for a list these names. Even if it’s allowed, it’s best to not use names of functions that already exist in R (e.g., c
, T
, mean
, data
, df
, weights
). When in doubt, check the help or use tab completion to see if the name is already in use.
We have created two variables, joel
and x
. What is their sum? The sum of joel
six times?
+ x joel
[1] 6
+ joel + joel + joel + joel + joel joel
[1] 18
x
, current_temperature
, thing
, or subject_id
.x2
is valid, but 2x
is not valid.joel
is different from Joel
.It is recommended to use nouns for variable names, and verbs for function names. It’s important to be consistent in the styling of your code (where you put spaces, how you name variables, etc.). Using a consistent coding style1 makes your code clearer to read for your future self and your collaborators. RStudio will format code for you if you highlight a section of code and press Ctrl/Cmd + Shift + a.
When assigning a value to an object, R does not print anything. You can force R to print the value by using parentheses or by typing the object name:
<- 55 # doesn't print anything
weight_kg <- 55) # putting parentheses around the call prints the value of `weight_kg` (weight_kg
[1] 55
# and so does typing the name of the object weight_kg
[1] 55
The variable weight_kg
is stored in the computer’s memory where R can access it, and we can start doing arithmetic with it efficiently. For instance, we may want to convert this weight into pounds:
2.2 * weight_kg
[1] 121
We can also change a variable’s value by assigning it a new one:
<- 57.5
weight_kg 2.2 * weight_kg
[1] 126.5
Importantly, assigning a value to one variable does not change the values of other variables. For example, let’s store the animal’s weight in pounds in a new variable, weight_lb
:
<- 2.2 * weight_kg weight_lb
and then change weight_kg
to 100.
<- 100
weight_kg weight_lb
[1] 126.5
Notice that weight_lb
is unchanged.
What are the values of these variables after each statement in the following?
<- 47.5
mass <- 122
age <- mass * 2.0
mass <- age - 20
age <- mass/age mass_index
Functions are sets of statements that are organized to preform certain tasks. They can be understood through analogy with cooking. Ingredients (called inputs or arguments) combine according to some set of reactions (the statements and commands of the function) to yield a product or output. A function does not have to return a number: a list of values could be returned, another function, or a list of functions.
Many functions are built into R, including sqrt()
. For sqrt()
, the input must be a number larger than zero, and the value that is returned by the function is the square root of that number. Executing a function is called running or calling the function. An example of a function call is:
sqrt(9)
[1] 3
# the input must be in the domain of the function:
sqrt("hello")
Error in sqrt("hello"): non-numeric argument to mathematical function
sqrt(-1) # note: sqrt() can take in *complex* numbers, including -1+0i
Warning in sqrt(-1): NaNs produced
[1] NaN
This is the same as assigning the value to a variable and then passing that variable to the function:
<- 9
a <- sqrt(a)
b b
[1] 3
Here, the value of a
is given to the sqrt()
function, the sqrt()
function calculates the square root, and returns the value which is then assigned to variable b
. This set up is important when you write more complex functions where multiple variables are passed to different arguments in different parts of a function.
sqrt()
is very simple because it takes just one argument. Arguments can be anything, not only numbers or files. Some functions take arguments which may either be specified by the user, or, if left out, take on a default value: these are called options. Options are typically used to alter the way the function operates, such as whether it ignores ‘bad values’, or what symbol to use in a plot. However, if you want something specific, you can specify a value of your choice which will be used instead of the default.
To access help about sqrt
, tab-completion can be a useful tool. Type s
and press Tab. You can see that R gives you suggestions of what functions and variables are available that start with the letter s
, and thanks to RStudio they are formatted in this nice list. There are many suggestions here, so let’s be a bit more specific and append a q
, to find what we want. If we press tab again, R will helpfully display all the available parameters for this function that we can pass an argument to.
#s<tab>q
#sqrt(<tab>)
To read the full help about sqrt
, we can use the question mark, or type it directly into the help document browser.
?sqrt
As you can see, sqrt()
takes only one argument, x
, which needs to be a numerical vector. Don’t worry too much about the fact that it says vector here; we will talk more about that later. Briefly, a numerical vector is one or more numbers. In R, every number is a vector, so you don’t have to do anything special to create a vector. More on vectors later!
Let’s try a function that can take multiple arguments: round()
.
#round(<tab>)
?round
If we try round with a value:
round(3.14159)
[1] 3
Here, we’ve called round()
with just one argument, 3.14159
, and it has returned the value 3
. That’s because the default is to round to the nearest whole number, or integer. If we want more digits we can pass an argument to the digits
parameter, to specify how many decimals we want to round to.
round(3.14159, digits = 2)
[1] 3.14
Above we have passed the argument 2
to the parameter digits
. We can leave out the word digits
since we know it comes as the second parameter, after x
.
round(3.14159, 2)
[1] 3.14
As you notice, we have been leaving out x
from the beginning. If you provide the names for both the arguments, we can switch their order:
round(digits = 2, x = 3.14159)
[1] 3.14
It’s good practice to put non-optional arguments before optional arguments, and to specify the names of all optional arguments. If you don’t, someone reading your code might have to look up the definition of a function with unfamiliar arguments to understand what you’re doing.
It is often useful to preform calculations only when certain conditions are met. One way to do this is using an “if else” statement. The syntax of such a statement is below:
# if (condition){
# computation
# } else{
# another computation
# }
Without the else
bit, the computation will be preformed if the condition is satisfied and nothing will be done (and variables in the environment will be unchanged) otherwise.
<- 1
t
< 10 # returns the truth value of this statement t
[1] TRUE
== 10 t
[1] FALSE
> 10 t
[1] FALSE
> 10 | t == 10 t
[1] FALSE
### < (less than), > (greater than), == (equals)
### & (and), | (or), ! (not) are common logical operators
if (t < 10){
print(t)
else{
} print(t-1)
}
[1] 1
### setting t <- 10 and executing the above returns 9
In fact, if else statements lend themselves naturally to deciding which of >2 alternative computations should be preformed, based on a set of appropriate conditions. For example,
<- 10
t <- 20
t2
if (t < 10 & t2 > 19){
print("1")
else if (t < 10 & t2 > 19){
} print("2")
else if (t <= 10 & t2 > 19){
} print("3")
}
[1] "3"
### notice how the third condition is met, but the others are not
### when the first condition is met (even if the others are too), "1" is printed:
if (t <= 10 & t2 > 19){
print("1")
else if (t <= 10 & t2 > 19){
} print("2")
else if (t <= 10 & t2 > 19){
} print("3")
}
[1] "1"
We have seen there are many built-in functions in R, which we will use throughout the semester: sum
, c()
, mean()
, all()
, plot()
, ifelse()
, print()
. We can also write our own functions for custom use. For example, the below chuck defines two functions which check if two scalar inputs are positive.
<- function(num1, num2) {
check_if_numbers_are_postive_function1 if (num1 > 0 & num2 > 0){
return("both numbers are postive!")
else{
} return("one or both numbers are not postive.")
}
}
check_if_numbers_are_postive_function1(4, 5)
[1] "both numbers are postive!"
check_if_numbers_are_postive_function1(-4, 5)
[1] "one or both numbers are not postive."
<- function(num1, num2) {
check_if_numbers_are_postive_function2 if (num1 > 0){
if (num2 > 0){
return("both numbers are postive!")
}
}
}
check_if_numbers_are_postive_function2(4, 5)
[1] "both numbers are postive!"
check_if_numbers_are_postive_function2(-4, 5)
Although these functions agree when both inputs are positive (i.e., they return the same output), the second function does not return a statement indicating one or both of the inputs are non-positive when this is the case. This is because we have not indicated what should be returned when the condition in one or the other if the statement in check_if_numbers_are_postive_function2
is not met.
We can do this as follows:
<- function(num1, num2) {
check_if_numbers_are_postive_function2
if (! num1 > 0){
return("one or both numbers are not postive.")
}
if (num1 > 0){
if (num2 > 0){
return("both numbers are postive!")
}if (! num2 > 0){
return("one or both numbers are not postive.")
}
}
}
check_if_numbers_are_postive_function2(4, 5)
[1] "both numbers are postive!"
check_if_numbers_are_postive_function2(-4, 5)
[1] "one or both numbers are not postive."
check_if_numbers_are_postive_function2(4, -5)
[1] "one or both numbers are not postive."
Importantly, these functions are not written with elegance in mind. There are better ways to check if two numbers are both positive. We encourage you to think more about how to write functions (like the above) with elegance and efficiency in mind, and how trade-offs between the two might come up.
Can you write a function that calculates the mean of 3 numbers?
<- function(num1, num2, num3) {
mean_of_three_numbers <- num1 + num2 + num3
my_sum <- my_sum / 3
my_mean return(my_mean)
}mean_of_three_numbers(2, 4, 6)
[1] 4
A vector is the most common data type in R, and is the workhorse of the language. A vector is composed of a series of values, which can be numbers (0, \(\pi\), 72) or characters (“hello”, “I’m a ChaRaCTER”). We can assign a series of values to a vector using the c()
function, which stands for concatenate. For example we can create a vector of animal weights and assign it to a new object weight_g
:
<- c(50, 60, 65, 82) # concatenate values into a vector
weight_g weight_g
[1] 50 60 65 82
You can also use the command seq
to create a sequence of numbers.
seq(from = 0, to = 30) # default spacing is =1
[1] 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
[26] 25 26 27 28 29 30
seq(from = 0, to = 30, by = 3) # returns every third number in c(0,1,2,...,30)
[1] 0 3 6 9 12 15 18 21 24 27 30
A vector can also contain characters (in addition to numbers):
<- c('mouse', 'rat', 'dog')
animals animals
[1] "mouse" "rat" "dog"
The quotes around “mouse”, “rat”, etc. are essential here and can be either single or double quotes. Without the quotes R will assume there are objects called mouse
, rat
and dog
. As these objects don’t exist in R’s memory, there will be an error message.
There are many functions that allow you to inspect the content of a vector. length()
tells you how many elements are in a particular vector:
length(weight_g)
[1] 4
length(animals)
[1] 3
An important feature of a vector is that all of the elements are the same type of data. The function class()
indicates the class (the type of element) of an object:
class(weight_g)
[1] "numeric"
class(animals)
[1] "character"
The function str()
provides an overview of the structure of an object and its elements. It is a useful function when working with large and complex objects:
str(weight_g)
num [1:4] 50 60 65 82
str(animals)
chr [1:3] "mouse" "rat" "dog"
You can use the c()
function to add other elements to your vector:
<- c(weight_g, 90) # add to the end of the vector
weight_g <- c(30, weight_g) # add to the beginning of the vector
weight_g weight_g
[1] 30 50 60 65 82 90
In the first line, we take the original vector weight_g
, add the value 90
to the end of it, and save the result back into weight_g
. Then we add the value 30
to the beginning, again saving the result back into weight_g
.
We can do this over and over again to grow a vector, or assemble a dataset. As we program, this may be useful to add results that we are collecting or calculating.
An atomic vector is the simplest R data type and it is a linear vector of a single type, e.g., all numbers. Above, we saw two of the six atomic vector types that R uses: "character"
and "numeric"
(or "double"
). These are the basic building blocks that all R objects are built from.
The other four atomic vector types are:
"logical"
for TRUE
and FALSE
(the boolean data type)"integer"
for integer numbers (e.g., 2L
, the L
indicates to R that it’s an integer)"complex"
to represent complex numbers with real and imaginary parts (e.g., 1 + 4i
)."raw"
for bitstreams. We will not discuss this type further.Vectors are one of the many data structures that R uses. Other important ones are lists (list
), matrices (matrix
), data frames (data.frame
), factors (factor
) and arrays (array
). In this class, we will focus on data frames, which is most commonly used one for data analyses.
We’ve seen that atomic vectors can be of type character, numeric (or double), integer, and logical. What happens if we try to mix these types? Find out by using class
to test these examples.
<- c(1, 2, 3, 'a')
num_char <- c(1, 2, 3, TRUE)
num_logical <- c('a', 'b', 'c', TRUE)
char_logical <- c(1, 2, 3, '4') tricky
# Answer
class(num_char)
[1] "character"
class(num_logical)
[1] "numeric"
class(char_logical)
[1] "character"
class(tricky)
[1] "character"
This happens because vectors can be of only one data type. Instead of throwing an error and saying that you are trying to mix different types in the same vector, R tries to convert (coerce) the content of this vector to find a “common denominator”. A logical can be turn into 1 or 0, and a number can be turned into a string/character representation. It would be difficult to do it the other way around: would 5 be TRUE or FALSE? What number would ‘t’ be? This establishes a hierarchy for conversions/coercions, whereby some types get preferentially coerced into other types. From the above example, we can see that the hierarchy goes logical -> numeric -> character, and logical can also be directly coerced into character.
If we want to extract one or several values from a vector, we provide one or several indices in square brackets:
<- c("mouse", "rat", "dog", "cat")
animals 2] animals[
[1] "rat"
c(3, 2)] # Provide multiple indices simultaneously animals[
[1] "dog" "rat"
We can also repeat the indices to create an object with more elements than the original one:
<- animals[c(1, 2, 3, 2, 1, 4)]
more_animals more_animals
[1] "mouse" "rat" "dog" "rat" "mouse" "cat"
R indices start at 1. Programming languages like Fortran, MATLAB, Julia, and R start counting at 1, because that’s what human beings typically do. Languages in the C family (including C++, Java, Perl, and Python) start counting at 0.
Another common way of subsetting is by using a logical vector. TRUE
will select the element with the same index, while FALSE
will not:
<- c(21, 34, 39, 54, 55)
weight_g c(TRUE, FALSE, TRUE, TRUE, FALSE)] weight_g[
[1] 21 39 54
Typically, these logical vectors are not typed by hand, but are the output of other functions or logical tests.
Due to its origins as a statistical computing language, R includes tools to deal with missing data easily. Missing data are represented in vectors as NA
.
Importantly, many built-in R functions will return NA
if the data you are working with include missing values. This feature makes it harder to overlook the cases where you are dealing with missing data.
<- c(2, 4, 4, NA, 6)
heights mean(heights)
[1] NA
max(heights)
[1] NA
For functions such as mean()
, you can add the argument na.rm = TRUE
to preform calculations ignoring the missing values:
mean(heights, na.rm = TRUE)
[1] 4
max(heights, na.rm = TRUE)
[1] 6
It is also possible to use conditional subsetting to remove NAs. The function is.na()
is helpful in this case. This function examines each element in a vector to see whether it is NA, and returns a logical vector.
is.na(heights)
[1] FALSE FALSE FALSE TRUE FALSE
Combining this function and !
(the logical operator not), we can extract elements that are not NAs:
## Extract those elements which are not missing values.
!is.na(heights)] heights[
[1] 2 4 4 6
Alternatively, we can use the these functions to achieve the same outcome.
# Returns the object with incomplete cases removed.
na.omit(heights)
[1] 2 4 4 6
attr(,"na.action")
[1] 4
attr(,"class")
[1] "omit"
# Extract those elements which are complete cases.
complete.cases(heights)] heights[
[1] 2 4 4 6
Important note: missing data are ubiquitous. Make sure you know why NAs exist in your data before removing them. If NAs are removed, document why and be sure to store the data pre- and post-processing.
Loops are essential in programming. They come in two types: for and while.
The syntax for a for loop is as follows:
# for (iterator in values_iterator_can_assume){
# computation
# }
The syntax for a while loop is as follows:
# while (condition){
# computation
# }
The key difference between these types of loop is that a while loop breaks when the condition fails to be met; the loop preforms calculations while the condition is met. A for loop preforms the computation for all values of the iterator in the list/vector/etc. of values specified in the “for” statement.
The below for loop prints the values in the vector the iterator num
can assume (one by one):
<- c(2, 4, 6, 8, 10)
v for (num in v) {
print(num)
}
[1] 2
[1] 4
[1] 6
[1] 8
[1] 10
Equivalently, we could write
for (i in 1:5) {
print(v[i])
}
[1] 2
[1] 4
[1] 6
[1] 8
[1] 10
This set up is quite powerful. We can now perform tasks iteratively:
# creates vector where each number is 3 more than the previous number:
<- c(0.4)
x
for (i in 1:5) {
+1] <- x[i] + 3
x[i
}
x
[1] 0.4 3.4 6.4 9.4 12.4 15.4
# calls sqrt() function from inside loop
<- c(0.4)
x
for (i in 1:5) {
+1] <- sqrt(x[i])
x[i
}
x
[1] 0.4000000 0.6324555 0.7952707 0.8917795 0.9443408 0.9717720
To constrast for and while loops, consider the following:
<- 0.4
x <- 1
i <- c() ### need to declare y so that values can be added in below loop
y
while (x <= 0.9999) {
<- x
y[i] <- sqrt(x)
x <- i + 1 # updating i so that y can be updated in next step
i
}
### note we could just keep track of x if we:
### 1) use the condition x[i] <= 0.9999
### 2) calculate the next term in the sequence of sqrts using x[i+1] <- sqrt(x[i])
y
[1] 0.4000000 0.6324555 0.7952707 0.8917795 0.9443408 0.9717720 0.9857850
[8] 0.9928670 0.9964271 0.9982120 0.9991056 0.9995527 0.9997763 0.9998882
The above loop returns the sequence of square roots \(0.4, \sqrt{0.4}, \sqrt{\sqrt{0.4}}, \dots\). Importantly, the loop terminates when an element of this sequence is greater than 0.9999. The number of iterations until this happens is not specified. This means while loops can run for infinite time if their conditions are never violated. It is best to have checks in place to make sure this doesn’t happen!
Refer to the tidy style guide for which style to adhere to.↩︎