# PUT YOUR NAME HERE

## Problem 1

Create the figure in the solution for Problem 1, using the data included in the R Markdown file.

####Make sure you install any necessary libraries
library(tidyverse)
library(ggcorrplot)
library(ggthemes)
####PUT YOUR CODE HERE
ggplot(dat1, aes(x=var1,y=var2))+
  geom_jitter()+
  geom_smooth(method = "lm") ###specify confidence level

Problem 2

Create the figure in the solution for Problem 2, using the data included in the R Markdown file.

Problem 3

Create the figure in the solution for Problem 3, using the data included in the R Markdown file.

Problem 4

Create the figure in the solution for Problem 4, using the data included in the R Markdown file.

Problem 5

Create the figure in the solution for Problem 5, using the data included in the R Markdown file.

Problem 6

Create the figure in the solution for Problem 6, using the data included in the R Markdown file.

Problem 7

Create the figure in the solution for Problem 7, using the data included in the R Markdown file.

Problem 8

Create the figure in the solution for Problem 8, using the data included in the R Markdown file.