I have made it so that on the scatter plot certain points have a label, but I can not figure out to give the corresponding points a color so it stands out from the rest of the points
xValueL <- "Penetration"
yValueL <- "PromotionVolume"
target <- c("RIS","JUICE" ,"ÖLKORV","MAJONNÄS", "SKALDJUR", "BACON")
#Plot
ggplot(mydata, aes_string(x=xValueL, y= yValueL)) +
geom_point() +
geom_label(
data=mydata %>%filter( Category %in% target),
aes(label=Category, hjust = -0.1, vjust = 0)
)