Load packages and data

library(tidyverse) 
## Warning: package 'tidyverse' was built under R version 4.1.3
## Warning: package 'ggplot2' was built under R version 4.1.3
## Warning: package 'tibble' was built under R version 4.1.3
## Warning: package 'tidyr' was built under R version 4.1.3
## Warning: package 'readr' was built under R version 4.1.3
## Warning: package 'dplyr' was built under R version 4.1.3
## Warning: package 'stringr' was built under R version 4.1.3

Make a plot

ggplot(mtcars, aes(x = factor(cyl), y = mpg)) + geom_boxplot()

Exercise 1

At this point one team member answers the exercises in text, then Push.

Exercise 2

Whoever didn’t do the last step needs to pull to get the final version on their local machine.

Rubric (15 points possible)

4 points if questions 1 and 2 have answers added as text. 5 points for >= five commits with informative messages made to the repo. 6 points for commits being from alternating team members following the directions above to create and resolve merge conflicts.