I would like to add color to a specific categorical variable. For instance, I want to highlight (by adding color) setosa species specifically; for the rest of species (such as virginica and versicolor), just black dots. I guess there should be an easy way to do this. I am pretty new to R.
data(iris)
library(ggplot2)
#This is not desirable
ggplot(iris, aes(Sepal.Length, Petal.Width)) + geom_point() + geom_point(aes(colour=Species))
#This is what I aim to achieve, but it is not working
ggplot(iris, aes(Sepal.Length, Petal.Width)) + geom_point() + geom_point(aes(colour=Species$setosa))