Below are a set of exercises to get you practicing with R. Complete them in an R script.

A. Create a new R script

In class, we learned how to save our own R scripts and add comments to those scripts. Let's practice!

Open a new R script in R

At the top of the script, write a comment with the title of this work: "Title: Introduction to R - Exercises" On the next line, add another comment with your name and the date.

Save the script as "YourlastName.r".

B. Use R as a calculator

In class, we learned how to use R as a calculator, including the use of some simple calculation functions. Let's practice In your new R script, write code that does the following calculations. After each line of code, add a comment on a new line containing the R output (i.e., the answer to the calculation).

For example, if the calculation is '2+2', your code should look like:

2+2
# 4

OK here are the calculations:

It is fine if you added extra parentheses in your code to clarify, so long as you got the answer right

  1. \(1 + 2(3 + 4)\)

  2. \(ln(4^{3}+3^{2+1})\)

  3. \(\sqrt{(4+3)(2+1)}\)

  4. \(\left(\frac{1+2}{3+4}\right)^{2}\)

C. Basic Variables

In class, we learned how to assign numbers to variables and use them in calcualtions. Let's practice

Here is a small program that converts a mass in kilograms to a mass in grams and then prints out the resulting value.

mass_kg <- 2.62
mass_g <- mass_kg * 1000
print(mass_g)

Modify this code to create a new program that converts pounds to kilograms. Specificaly, assign the body mass of 3.5 pounds (about the right size for a Desert Cottontail Rabbit – Sylvilagus audubonii) to a variable. Convert that value to kilograms (we are serious scientists after all). There are approximately 2.2046 lbs in a kilogram, so divide the variable storing the weight in pounds by 2.2046. Store the resulting value in kilograms in a new variable. Print the value of the new variable to the screen. What do you see?

D. More Variables

Calculate a total biomass in grams for 3 white-throated woodrats (Neotoma albigula) and then convert it to kilograms. The total biomass is simply the sum of the biomass of all individuals, but in this case we only know that the average size of a single individual is 250 grams.

  1. Add a new section to your R script starting with a comment.
  2. Create a variable grams and assign it the mass of a single Neotoma albigula.
  3. Create a variable number and assign it the number of individuals.
  4. Create a variable biomass and assign it a value by multiplying the two variables together.
  5. Convert the value of biomass into kilograms (there are 1000 grams in a kilogram so divide by 1000) and assign this value to a new variable.
  6. Print the final answer to the screen.

Thought exercise (no need to write the answers, just think about them): Are the variable names grams, number, and biomass the best choice? If we came back to the code for this assignment in two weeks (without the assignment itself in hand) would we be able to remember what these variables were referring to and therefore what was going on in the code? The variable name biomass is also kind of long. If we had to type it many times it would be faster just to type b. We could also use really descriptive alternatives like individual_mass_in_grams. Or we would compromise and abbreviate this or leave out some of the words to make it shorter (e.g., indiv_mass_g).

Have a think about appropriate variable names and then rename the variables in your program to what you find most useful. Make sure your code still runs properly after you've changed the names.

E. Built-in Functions

In class, we learned about built-in functions. A built-in function comes pre-loaded in R (you don't need to install anything extra to use it). To learn how to use a new built-in loaded function that you don't know how to use, use the help function. To look up the help page, type ? and the name of the function that you want information about (e.g., ?abs).

Using the ?, familiarize yourself with the built-in functions abs(), round(), sqrt(), tolower(), and toupper(). Use these built-in functions to write code that prints the following items:

  1. The absolute value of -15.5.

  2. 4.483847 rounded to one decimal place. The function round() takes two arguments, the number to be rounded and the number of decimal places.

  3. 3.8 rounded to the nearest integer. You don't have to specify the number of decimal places in this case if you don't want to, because round() will default to using 0 if the second argument is not provided. Look at help(round) or ?round to see how this is indicated.

  4. "species" in all capital letters.

  5. "SPECIES" in all lower case letters.

  6. Assign the value of the square root of 2.6 to a variable. Then round the variable you've created to 2 decimal places and assign it to another variable. Print out the rounded value.

  7. Do the same thing as task 6 (immediately above), but instead of creating the intermediate variable, perform both the square root and the round on a single line by putting the sqrt() call inside the round() call.