I would like to connect the data points from highlight2 to their corresponding highlight3 data points
ggplot() + theme_classic() +
scale_x_continuous(limits = c(0,5), breaks = c(seq(0,5,1))) +
scale_y_continuous(limits = c(-50,100), breaks = c(seq(-50,100,50))) +
geom_point(data=highlight2,aes(x=A,y=B),color='red', size=4) +
geom_point(data=highlight3,aes(x=A,y=B),color='blue', size=4) +
theme(axis.text = element_text(size = 16, face="bold"))
Here is the plot so far. I basically want to connect the red dots to their corresponding blue dots on the plot.