By the end of this assignment, you should be able to achieve the following tasks in R:

These achievements belong to Learning Outcomes 4, 5, 6.

Click on any blue text to visit the external website.

You will make 10 plots for this assignment, using the skills you developed in the previous homework.

Note: If you contact me for help or (better yet) open an issue in the public discussion forum, please include the code that is not working and also tell me what you have tried.

Preparation

Graph some biological data

Develop this habit for the remaining assignments: Open your Rproj file, download or create your new notebook as assigned, edit the YAML file, and then insert your first code chunk where you will load any packages needed for the assignment.


For this homework, you will use ggplot2 to make plots from some of the datasets that come with R and the tidyverse packages. I will give you the dataset to use, and other information to use for mapping, etc. I expect you will write and execute the code.

Plot 1

  • Plot type: scatterplot
  • Dataset: trees
  • x-axis: height
  • y-axis: girth

Plot 2

Apply some of your skills that you learned during Assignment 02. You will make two vectors, then combine them into a data frame for plotting. Review the assignments if necessary.

  • Make a vector called year for 1821 to 1934. Rememeber how to use : to make a sequence of numbers?

  • Look at the class() of the lynx dataset. The lynx dataset is a “time series” class (ts). You can convert the time series data to a vector by using the as.vector() function. Just put the dataset name inside the parentheses. Assign this to the variable pelts.

  • Make a dataframe called lynx_pelts from these two vectors.

  • Plot type: linegraph
  • Dataset: lynx_pelts (see above)
  • x-axis: year
  • y-axis: pelts
  • Make the line color maroon. Maroon is one of the default R colors.

Plot 3

  • Plot type: scatterplot
  • Dataset: iris
  • x-axis: petal length
  • y-axis: petal width
  • Point color and shape by species. You do not have to use fillable shapes.
  • Point size of 2
  • Add a labs layer to change the x- and y-axis labels so that they do not have periods in the names (i.e., Petal Length, Petal Width).

Plots 4 and 5

  • This requires two code chunks, which will be nearly identical

  • Plot type: Violin plot (look up geom_violin)
  • Dataset: msleep
  • x-axis: vore
  • y-axis: sleep_rem
  • fill = grayXX where XX is either 30 or 70.
  • In your description, describe in your own words what violin plots display (you can search the interwebs), and what is the difference among the two versions of gray shading. Hint: the grays extend from gray0 to gray100. You can learn more about colors in R from this PDF file.

Plot 6

There is no plot 6. And, there is no spoon.

Plot 7

  • Plot type: boxplot
  • Dataset: msleep
  • x-axis: order
  • y-axis: sleep_total
  • use coord_flip()

Plot 8

  • Plot type: boxplot with points
  • Dataset: msleep
  • x-axis: conservation
  • y-axis: awake
  • You must have a boxplot layer, a point layer, and a jitter layer.
  • color by conservation status.
  • You may use coord_flip but it is not required. Try both and choose the one you think looks best.
  • Add a lab layer to change both axis labels so each starts with an upper-case letter.
  • Search the internet to find out how to change the legend title to Conservation. Make that change. (Do not try to change the actual legend entries like “cd” and “vu”). Note: This can be done a couple of different ways but scale_color_discrete() is one good way.

Plots 9 and 10.

  • Make two scatterplots of your choice, with the following constraints.

  • One should plot any one of the “sleep” or “awake” variables against body weight. The other should plot any one of the “sleep” or “awake” variables against brain weight.
  • In each plot, color the points by one of the nominal data categories. Use a different category for each plot.
  • Apply facet_wrap() to at least one of the plots using one of the nominal variables. You decide whether you use 2 or 3 columns. Hint: use one of the nominal variables with relatively few different types for wrapping. Explore: What happens if you use a nominal variable like genus, with lots of types?
  • You should try a few versions of each graph until you find combinations that you think show some clear trends.
  • Describe the patterns or trends you see in each graph.