I'm using seaborn's kdeplot to draw the distribution of my data.
sns.kdeplot(data['numbers'], shade=True)
I want to divide the shaded area under the line into three parts, showing the "high" percentile and the "low" percentile. It would be ideal if I can color the shaded area with three different colors.
Any idea how I can go about doing that?
I want it to look something like the below where I can decide the cutoff value between the colors.