How can I make the x axis be colored the same as the points.
Ideally, I'd like to not have to manually set colors and my real dataset has 20 points in each facet.
d = data.frame(x = c("A","B","C"),y = c(1,2,3), color = c("A","B","C"))
ggplot(d, aes(x= x, y = y, color = color))+geom_point()