I am trying to indicate a "dangerous" zone in my sns boxplot.
So far this is what i came up with:
plt.fill_between([0, 6], [danger, danger], danger * 1.2, color='salmon', alpha=0.5)
But since I use sns
boxplot, the x values are totally messed up and i had to play with it to get the following result:
I cant really increase the polygon size as the plot grows with it (understandingly).
Ideally i would have wanted to simply paint everything above this threshold as red like so: