I'm using Seaborn to plot a cumulative distribution and it's KDE using this code:
sns.distplot(values, bins=20,
hist_kws= {'cumulative': True},
kde_kws= {'cumulative': True} )
This gives me the following chart:
I'd like to plot a vertical line and the corresponding x index where y is 0.8. Something like:
How do I get the x value of a specific y?