i'm following this documentation (https://cran.r-project.org/web/packages/ggfortify/vignettes/plot_pca.html) to run PCA on the iris data set.
library(ggfortify)
df <- iris[1:4]
pca_res <- prcomp(df, scale. = TRUE)
autoplot(pca_res, data = iris, colour = 'Species')
I ran the above code and I get three clusters which are colored by species. I only want to plot a specific species. How can I only plot where the species is setosa in this context?

