Hi, Anyone. New to RStudio, following along with R for Data Visualization (https://r4ds.had.co.nz/), chapter 3.3 Aesthetic Mapping. The text illustrates how to manually change the aesthetic properties of the geom, for example the color of the point.
1 ggplot(data = mpg) +
2 geom_point(mapping = aes(x=displ,y=hwy, colour="green")) # to show the points in green. No matter what color I assign, the output color of the scatterplot is pink.
Grateful for any thoughts you might have.