Hi there!
I'm having trouble removing the overview of the colouring of the different levels of the variable splitku4_lab on the right hand side of my ggplot-visualization. How do you think I could go about removing it?
My code: ggplot(data = d)+
aes(x=splitku4,y=ku4)+
geom_jitter(alpha=0.55,aes(colour=splitku4_lab))+
geom_hline(data = mean,aes(yintercept=mean_val,col=splitku4_lab))+
labs(x=NULL,y="Berettigelse til arbejdsløshedsunderstøttelse (0-10)",
title = "Berettigelse til arbejdsløshedsunderstøttelse (ku4)",
subtitle = "For kontrolgruppe og stimuligrupper",
caption = "N=928")+
theme_bw()+
facet_grid(.~splitku4_lab,space = "free",scales = "free_x")
Merry Christmas!