Learning Objectives
Following this assignment students should be able to:
- understand the basic plot function of
 ggplot2- import ‘messy’ data with missing values and extra lines
 - execute and visualize a regression analysis
 
Reading
- 
    
Topics
ggplot
 - 
    
Readings
 - 
    
Additional information
 
Lecture Notes
Exercises
Acacia and Ants (15 pts)
An experiment in Kenya has been exploring the influence of large herbivores on plants.
Download the data on Acacia for the experiment into a
datasubdirectory and read it into R using the following command:acacia <- read.csv("data/ACACIA_DREPANOLOBIUM_SURVEY.txt", sep="\t", na.strings = c("dead"))- Make a scatter plot with 
CIRCon the x axis andAXIS1(the maximum canopy width) on the y axis. Label the x axis “Circumference” and the y axis “Canopy Diameter”. - The same plot as (1), but with points colored based on the 
ANTcolumn (the species of ant symbiont living with the acacia) - The same plot as (2), but instead of different colors show different species of ant (values of 
ANT) each in a separate subplot. - The same plot as (3) but including a simple model by adding 
geom_smooth. 
- Make a scatter plot with 
 Mass vs Metabolism (15 pts)
The relationship between the body size of an organism and its metabolic rate is one of the most well studied and still most controversial areas of organismal physiology. We want to graph this relationship in the Artiodactyla using a subset of data from a large compilation of body size data (Savage et al. 2004). You can copy and paste this data frame into your program:
size_mr_data <- data.frame( body_mass = c(32000, 37800, 347000, 4200, 196500, 100000, 4290, 32000, 65000, 69125, 9600, 133300, 150000, 407000, 115000, 67000,325000, 21500, 58588, 65320, 85000, 135000, 20500, 1613, 1618), metabolic_rate = c(49.984, 51.981, 306.770, 10.075, 230.073, 148.949, 11.966, 46.414, 123.287, 106.663, 20.619, 180.150, 200.830, 224.779, 148.940, 112.430, 286.847, 46.347, 142.863, 106.670, 119.660, 104.150, 33.165, 4.900, 4.865), family = c("Antilocapridae", "Antilocapridae", "Bovidae", "Bovidae", "Bovidae", "Bovidae", "Bovidae", "Bovidae", "Bovidae", "Bovidae", "Bovidae", "Bovidae", "Bovidae", "Camelidae", "Camelidae", "Canidae", "Cervidae", "Cervidae", "Cervidae", "Cervidae", "Cervidae", "Suidae", "Tayassuidae", "Tragulidae", "Tragulidae"))Make the following plots with appropriate axis labels:
- A plot of body mass vs. metabolic rate
 - A plot of body mass vs. metabolic rate, with logarithmically scaled axes (this stretches the axis, but keeps the numbers on the original scale), and the point size set to 3.
 - The same plot as (2), but with the different families indicated using color.
 - The same plot as (2), but with the different families each in their own subplot.
 
Adult vs Newborn Size (20 pts)
Larger organisms have larger offspring. We want to explore the form of this relationship in mammals.
Download some mammal life history data from the web. You can do this either directly in the program using
read.csv()or download the file to your computer using your browser, save it in thedatasubdirectory, and import it from there. It is tab delimited so you’ll want to usesep = "\t"as an optional argument when callingread.csv(). The\tis how we indicate a tab character to R (and most other programming languages).When you import the data there are some extra blank lines at the end of this file. Get rid of them by using the optional
read.csv()argumentnrows = 1440to import only the first 1440 rows.Missing data in this file is specified by
-999and-999.00. Tell R that these are null values using the optionalread.csv()argument,na.strings = c("-999", "-999.00"). This will stop them from being plotted.- Graph adult mass vs. newborn mass. Label the axes with clearer labels than the column names.
 - It looks like there’s a regular pattern here, but it’s definitely not linear. Let’s see if log-transformation straightens it out. Graph adult mass vs. newborn mass, with both axes scaled logarithmically. Label the axes.
 - This looks like a pretty regular pattern, so you wonder if it varies among different groups. Graph adult mass vs. newborn mass, with both axes scaled logarithmically, and the data points colored by order. Label the axes.
 - Coloring the points was useful, but there are a lot of points and it’s kind
of hard to see what’s going on with all of the orders. Use 
facet_wrapto create a subplot for each order. - Now let’s visualize the relationships between the variables using a simple
linear model. Create a new graph like your faceted plot, but using
geom_smoothto fit a linear model to each order. You can do this using the optional argumentmethod = "lm"ingeom_smooth. 
Acacia and Ants Histograms (20 pts)
An experiment in Kenya has been exploring the influence of large herbivores on plants.
Download the data on Acacia for the experiment into a
datasubdirectory for you project read it into R using the following command:acacia <- read.csv("data/ACACIA_DREPANOLOBIUM_SURVEY.txt", sep="\t", na.strings = c("dead"))- Make a bar plot of the number of acacia with different ant mutualists.
 - Make a histogram of the height of acacia (using the 
HEIGHTcolumn). Label the x axis “Height (m)” and the y axis “Number of Acacia”. - Make a plot that shows histograms of both 
AXIS1andAXIS2. Due to the way the data is structured you’ll need to add a 2nd geom_histogram() layer that specifies a new aesthetic. To make it possible to see both sets of bars you’ll need to make them transparent with the optional argument alpha = 0.3. Set the color forAXIS1to “red” andAXIS2to “black” using thefillargument. Label the x axis “Canopy Diameter(m)” and the y axis “Number of Acacia”. - Use 
facet_wrap()to make the same plot as (3) but with one subplot for each treatment. Set the number of bins in the histogram to 10. 
Acacia and Ants Data Manipulation (30 pts)
An experiment in Kenya has been exploring the influence of large herbivores on plants.
Download the data on Trees for the experiment into a
datasubdirectory. There are a number of problematic entries in this data so use thereadrpackage to import it:library(readr) trees <- read_tsv("data/TREE_SURVEYS.txt")- Add a new column to the 
treesdata frame namedcanopy_areathat contains the estimated canopy area calculated as the value in theAXIS_1column times the value in theAXIS_2column. Print out theSURVEY,YEAR,SITE, andcanopy_areacolumns from data frame. - Make a scatter plot with 
canopy_areaon the x axis andHEIGHTon the y axis. Color the points byTREATMENTand plot the points for each value in theSPECIEScolumn in a separate subplot. Label the x axis “Canopy Area (m)” and the y axis “Height (m)”. Make the point size 2. - That’s a big outlier in the plot from (2). 50 by 50 meters is a little too
big for a real Acacia, so filter the data to remove any values for 
AXIS_1andAXIS_2that are over 20 and update the data frame. Then remake the graph. - Find out how the abundance of each species has been changing through time.
Use 
group_by,summarize, andnto make a data frame withYEAR,SPECIES, and anabundancecolumn that has the number of individuals in each species in each year. Print out this data frame. - Make a line plot with points (by using 
geom_linein addition togeom_point) withYEARon the x axis andabundanceon the y axis with one subplot per species. To let you seen each trend clearly let the scale for the y axis vary among plots by addingscales = "free_y"as an optional argument tofacet_wrap. 
- Add a new column to the 
 
