Adding grey shaded area in ggplot2

Add expand = c(0,0) to your y scale

scale_y_continuous("Monthly suicide rate per 100 000", expand = c(0,0))

4 Likes