I'm using the following code to seperatly color code my 3 groups in r:
pca_ggp = ggplot(pca_coordinates, aes(x=PC1, y=PC2)) + geom_point() +
scale_colour_manual(values=c("red", "blue", "green"))
However, all the dots come back black.
Can anyone please help,
all the best.