I am trying to remove the grey points on my scatterplot and can't manage to do so. I have attached the lines of code that I am using below. I believe that using a subset would help but thought that the "color" in geom_point would only apply the points from the selected variables in "color"
ggplot(MLS_Draft_File, aes(x = MLS_Draft_File$`Overall Pick Number`,
y = MLS_Draft_File$`Percentage of Minutes Played`)) +
geom_point(aes(color = MLS_Draft_File$`Drafting Club`)) +
lims(color = c("New York City FC", "Orlando City SC", "Atlanta United FC", "Minnesota United FC", "Los Angeles FC", "FC Cincinnati"))