【发布时间】:2020-07-20 21:25:58
【问题描述】:
我正在使用 Seaborn 绘制累积分布,它是使用此代码的 KDE:
sns.distplot(values, bins=20,
hist_kws= {'cumulative': True},
kde_kws= {'cumulative': True} )
这给了我以下图表:
我想绘制一条垂直线和相应的 x 索引,其中 y 为 0.8。比如:
如何获得特定 y 的 x 值?
【问题讨论】:
标签: matplotlib seaborn distribution