Looking at the relationship between weight and miles per gallon using the mtcars data set
library(knitr) opts_chunk$set(echo=FALSE) library(tidyverse) ggplot(mtcars, aes(wt, mpg)) + geom_point()