Note: For each question, create a header using two pound signs (##) along with the name of the question. Use these to help separate your answers. For questions with multiple parts, use double asterisks to make them bold.

For example, the header for your first question and enumeration of the parts should look like:

Chapter 4 Question 5

Part A

Part B

Part C


Textbook Questions

From the Introduction to Modern Statistics Textbook, do the following exercises (you do not need to read anything from the textbook to answer these):

  • Ch 4.8: #5, #6
  • Ch 5.10 #1, #2

R Questions

Question 1: For this question, we will be using the iris dataset, giving the measurements, in centimeters, of the variables for sepal and petal length and width

To load this data into R, simply copy and paste the following into your Rmd file in an R code chunk

data(iris)

Use this data to answer the following questions:

  • Part A How many observations and variables are in the iris dataset? In one sentence, briefly describe what constitutes an observation in this data.
  • Part B Create the appropriate plot to visualize the relationship between the variables Sepal.Width and Sepal.Length. Do these two variables appear to be associated? If so, comment on the strength of this association.
  • Part C Create the plot again, this time adding an additional aesthetic for the variable Species. Has anything changed in the association between Sepal.Width and Sepal.Length? Comment on the strength, form, and direction of any associations you see.