Data In The Wild
  1. Module 4
  2. Assignment 4
  • Home
  • Contact Us
  • For Instructors

  • Module 1
    • Overview
    • 1.1: Introduction to R and RStudio
    • 1.2: Intro to Coding in R
    • 1.3: Introduction to the tidyverse
    • Assignment 2
    • Assignment 3
  • Module 2
    • Overview
    • 2.1: Good Food Gone Bad
    • 2.2: Plotting with ggplot2
    • 2.3: Data Visualization
    • 2.4: Exploring geom Functions
    • 2.5: Module 2 Wrap-Up
    • Assignment 1
    • Assignment 2
    • Assignment 3
  • Module 3
    • Overview
    • 3.1: Leopard Seals
    • 3.2: T-Tests
    • 3.3: Comparing (Multiple) Means
    • Assignment 1
    • Assignment 2
  • Module 4
    • Overview
    • 4.1: Combining Datasets (Joins & Binds)
    • 4.2: K-Nearest Neighbor
    • 4.3: Roads and Regressions
    • 4.4: Multiple Regression
    • 4.5: Writing Functions
    • Assignment 1
    • Assignment 2
    • Assignment 3
    • Assignment 4
  • Module 5
    • Overview
    • 5.1: Population Growth
    • 5.2: Sustainable Fishing
    • 5.3: Comparing Populations
    • Assignment 1
    • Assignment 2
    • Assignment 3
  • Final Project

  • Resources

On this page

  • Practicing for the Final
    • Structure & Guidelines
      • Data
      • Interpreting Statistical Results
      • Plotting
    • Set-Up
    • Problem Set 1
    • Problem Set 2
      • Adding a Variable
    • Problem Set 3
  1. Module 4
  2. Assignment 4

Module 4 Assignment 4: Practice for the Final

Author

Ellen Bledsoe, Lily McMullen

Practicing for the Final

This is meant to help you prepare for the final “project” (really just an elongated assignment) which I will be handing out after the Module 4 quiz. The final will have about the same amount of guidance (or maybe even a bit more) that I’ve given you here. If you can work your way through these practice problems, you’ll be in good shape!

I’m expecting you to be able to filter, summarize, and wrangle the data in ways you need, choose the appropriate visualization, choose the appropriate analysis, and correctly interpret the analysis for the question I’ve asked you.

Some important notes:

  • For both this and the final project, we are going to use the palmerpenguins dataset, which we’ve used before! You can learn more about it here.

  • I will not be giving you an answer key for your final project since part of your grade for the assignment is to choose the correct visualizations and analyses.

  • Because we are working through this together in class, I will be grading this assignment on completion only! That said, make sure you actually answer every question that’s in here for full credit…there are quite a few!


Structure & Guidelines

This practice/review is structured as 3 different problem sets. For each problem set, I am presenting you with a initial question to guide your thinking and analysis.

Data

Assume that nothing carries over between problem sets.

Each problem set is stand-alone, meaning that you should always start with the penguins data frame at the beginning of each problem set. If you should use a data frame that you created within the problem set, I explicitly state so.

For example, in Problem Set 1, you should use the dream data frame that you create for the entire problem set; at the start of Problem Set 2, start over with the penguins data frame.

Interpreting Statistical Results

When I ask you to interpret statistical results, you should roughly follow these guidelines.

  • the cut-off for our p-values is always 0.05
  • report the p-value that we are focused on
  • if there are multiple p-values of interest, report all of them
  • state whether the p-value indicates a significant difference/relationship
  • if applicable, state whether we should or should not reject the null hypothesis

Plotting

All plots should be made using ggplot2.

Your options for plot types to choose from are:

  • multiple histogram plots
    • use transparency (alpha)
    • use position = "identity" with multiple groups to see the full distributions
  • multiple density plots
    • use transparency (alpha) with multiple groups to see the full distributions
  • box-and-whisker plot
    • add points on top of the box plot to show the distribution of the points
  • scatter plot
    • add the linear model to every scatter plot

Note: All plots should have modified axis labels and legend labels and a theme.

In many cases, this might mean capitalizing the axis label or legend label. In other cases, you might want to put units in parentheses after the words (e.g., Body Mass (g)).


Set-Up

Let’s load our packages and get started!

Load the tidyverse and palmerpenguins packages.

We will be using the penguins data frame. It exists as part of the palmerpenguins package, but if you want it to show up in your environment, run the following code chunk.

penguins <- penguins

Problem Set 1

Objective: For this problem set, we are going to look at the difference in flipper lengths for each species on Dream island.

First things first, let’s make a dataframe with only the penguins on Dream island. We will want to use this dataframe for the rest of this problem set; call it dream.

Based on our question, which variable is independent and which is dependent? Which is continuous and/or which is categorical?

Answer:

flipper length: dependent, continuous
species: independent, categorical

First, calculate the range (minimum and maximum) and mean of the flipper lengths for each species

Choose an effective visualization method for this data. Use ggplot2.

Write out the null and alternative hypotheses.

Null:

Alternative:

Run the appropriate statistical test.

Interpret the results of your statistical test:

  • What is the p-value?
  • Is the p-value above or below 0.05?
  • What does your answer to the question above mean?
  • Should we reject or fail to reject the null hypothesis?

Answer:

Should we run pairwise comparisons? If yes, do so below and interpret:

Problem Set 2

For this problem set, we want to know if there is a relationship between flipper length and bill length among all penguins (we aren’t going to worry about species right now).

Are our variables of interest continuous and/or categorical?

Take note that in this example, there is no dependent or independent variable per se. We don’t have any reason to think that flipper length influences bill length or vice versa. We just want to determine if there is a relationship or not.

That said, treat flipper length as the independent variable (x-axis) and bill length as the dependent variable (y-axis).

First, calculate the mean and standard deviation for both bill length and flipper length.

Choose the best way to visualize the relationship between these two variables

To do the rest of this problem set, the easiest way is to create a new data frame with no NA values. Run the code chunk below and use that new data frame for the rest of the problem set.

penguins_noNA <- penguins %>% 
  filter(!is.na(bill_length_mm),
         !is.na(flipper_length_mm))

Calculate the correlation coefficient and the r^2 value in the code chunk below.

  • According to the correlation coefficient, is the relationship positive, negative or is there no relationship?

Answer:

  • What does the r^2 value tell us? Remember, we usually multiply the r^2 by 100 to represent this as a percentage.

Answer:

Run the appropriate statistical test for this data.

Using variables and numbers from the summary above, write out the equation of the line of best fit.

Answer:

Interpret the results of your statistical test:

  • What is the p-value?
  • Is the p-value above or below 0.05?
  • What does your answer to the question above mean?

Answer:

Should we run pairwise comparisons? If yes, do so below and interpret:

Adding a Variable

Let’s add in the species variable into our analysis! Keep using the penguins_noNA data frame.

First, plot the data, this time including species as a variable in the plot.

Run the model again, this time including species and the species interaction with “independent” variable.

Interpret the results from the model above. Focus on the p-values for the independent variables and/or interaction terms, not the overall model.

Answer:

Problem Set 3

For this problem set, we want to know if there is a difference in the body mass of the penguin species.

Based on our question, which variable is independent and which is dependent? Which is continuous and/or which is categorical?

First, calculate the minimum, maximum, and mean of the body mass for each species. Call this dataframe body_mass.

What if we wanted the values in the newly created body_mass column to be in kilograms instead of grams?

Let’s do this in 2 parts.

  • First, we will create a function that converts a number from grams to kilograms.
  • Second, we will use that function that we just created to modify each column (hint: we will want to use mutate).

Our first step is to write a function that converts a number (not a column, mind you) from grams to kilograms.

Convert all the columns in the body_mass data frame from grams to kilograms using the function you wrote above. You don’t need to save this dataframe as anything, but if you do, call it body_mass_kg.

Back to the question at hand…

Choose an effective visualization method for this data (you will want to use the original penguins dataframe - grams are fine). Practice adding lines that represent the mean values in the plot.

Write out the null and alternative hypotheses.

Null:

Alternative:

Run the appropriate statistical test.

Interpret the results of your statistical test:

  • What is the p-value?
  • Is the p-value above or below 0.05?
  • What does your answer to the question above mean?
  • Should we reject or fail to reject the null hypothesis?

Answers:

Should we run pairwise comparisons? If yes, do so below and interpret:

2026, University of Arizona & Lewis & Clark College

 
  • Made with Quarto