R ggplot 绘图

library(tidyverse, lib.loc = “/usr/lib64/R/library”)
ggplot(data = mpg,mapping = aes(x = displ, y = hwy,color=class)) + geom_point()