Looking at the relationship between weight and miles per gallon using the mtcars data set

Looking at the relationship between weight and miles per gallon using the mtcars data set

Code Appending

library(knitr)
opts_chunk$set(echo=FALSE)
library(tidyverse)


ggplot(mtcars, aes(wt, mpg)) + geom_point()