Using library(tidyverse)
, fix this code by making the point blue instead of red:
ggplot(data = mpg) + geom_point(mapping = aes(x = displ, y = hwy, colour = "blue"))
Not sure where where to input the code to change it to blue instead of red, can anyone explain why it is default red and what the code would look like to change the colour?