matplotlib 如何在KDE图中定位中值

nkhmeac6  于 2023-05-01  发布在  其他
关注(0)|答案(1)|浏览(103)

我试图做一个Kernel Density Estimation (KDE) plot与海运和定位中位数。代码看起来像这样:

import seaborn as sns
import numpy as np
import matplotlib.pyplot as plt

sns.set_palette("hls", 1)
data = np.random.randn(30)
sns.kdeplot(data, shade=True)

# x_median, y_median = magic_function()
# plt.vlines(x_median, 0, y_median)

plt.show()

正如你所看到的,我需要一个magic_function()来从kdeplot中获取x和y的中值。然后我想用e来绘制它们。例如vlines。但是,我不知道该怎么做。结果应该看起来像这样(显然这里的黑色中间条是错误的):

我想我的问题与seaborn没有严格的关系,也适用于其他类型的matplotlib图。如有任何意见,不胜感激。

xmjla07d

xmjla07d1#

您需要:
1.提取KDE行的数据
1.积分计算累积分布函数(CDF)
1.找到使CDF等于1/2的值,即中位数

import numpy as np
import scipy
import seaborn as sns
import matplotlib.pyplot as plt

sns.set_palette("hls", 1)
data = np.random.randn(30)
p=sns.kdeplot(data, shade=True)

x,y = p.get_lines()[0].get_data()

#care with the order, it is first y
#initial fills a 0 so the result has same length than x
cdf = scipy.integrate.cumtrapz(y, x, initial=0)

nearest_05 = np.abs(cdf-0.5).argmin()

x_median = x[nearest_05]
y_median = y[nearest_05]

plt.vlines(x_median, 0, y_median)
plt.show()

相关问题