I have a dataset of scores (from 0 to 100) on different dimensions (A,B,C,D). Using the following code:
dat=stack(dat)
dat$ind <- factor(dat$ind,levels=rev(unique(dat$ind)))
ggplot(dat, aes(values,ind)) +
geom_boxplot() +
xlab("Dimension Score") +
ylab ("Dimension")
I create a plot that looks like this:

Now I need to highlight specific ranges for each of the dimensions:
A: 45 to 60
B: 70 to 85
C: 40 to 55
D: 35 to 50
How do I do this? Thank you in advance for your help.
