# 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
Create the figure in the solution for Problem 2, using the data included in the R Markdown file.
Create the figure in the solution for Problem 3, using the data included in the R Markdown file.
Create the figure in the solution for Problem 4, using the data included in the R Markdown file.
Create the figure in the solution for Problem 5, using the data included in the R Markdown file.
Create the figure in the solution for Problem 6, using the data included in the R Markdown file.
Create the figure in the solution for Problem 7, using the data included in the R Markdown file.
Create the figure in the solution for Problem 8, using the data included in the R Markdown file.