I want to visualize the relationship of y with A, B, and C separately across 10 levels of a group variable using geom_point().
My current plot can only plot y against A but I want B and C to be shown in each plot in different colors.
I was wondering how this might be achievable in ggplot2?
library(ggplot2)
dat <- read.csv('https://raw.githubusercontent.com/rnorouzian/e/master/sng.csv')
ggplot(dat)+aes(x=A, y = y, fill = group)+geom_point()+ # How can I have `B` and `C` next to `A` with other colors
facet_wrap(~group)

