【问题标题】:Plotting 2D Kernel Density Estimation with Python用 Python 绘制二维核密度估计
【发布时间】:2015-07-20 16:13:09
【问题描述】:

我想绘制一个 2D 内核密度估计。我发现 seaborn 包在这里非常有用。但是,找了半天,也想不通怎么让y轴和x轴不透明。另外,如何显示轮廓上的密度值?如果有人可以帮助我,我将不胜感激。下面请看我的代码和图表。

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

Y = np.random.multivariate_normal((0, 0), [[0.8, 0.05], [0.05, 0.7]], 100)
ax = sns.kdeplot(Y, shade = True, cmap = "PuBu")
ax.patch.set_facecolor('white')
ax.collections[0].set_alpha(0)
ax.set_xlabel('$Y_1$', fontsize = 15)
ax.set_ylabel('$Y_0$', fontsize = 15)
pl.xlim(-3, 3)
pl.ylim(-3, 3)
pl.plot([-3, 3], [-3, 3], color = "black", linewidth = 1)
pl.show()

【问题讨论】:

  • 我不确定您所说的“使 y 轴和 x 轴不透明”是什么意思; ax.collections[0].set_alpha(0) 线使最低轮廓透明;如果你不想这样,请不要包含该行。

标签: python matplotlib plot kernel seaborn


【解决方案1】:

【讨论】:

  • 我赞成,因为这些是回答问题的好例子,但我会推荐一个更友好的描述,这样人们就不会继续投票给你。
【解决方案2】:

这是一个仅使用 scipymatplotlib 的解决方案:

import numpy as np
import matplotlib.pyplot as pl
import scipy.stats as st

data = np.random.multivariate_normal((0, 0), [[0.8, 0.05], [0.05, 0.7]], 100)
x = data[:, 0]
y = data[:, 1]
xmin, xmax = -3, 3
ymin, ymax = -3, 3

# Peform the kernel density estimate
xx, yy = np.mgrid[xmin:xmax:100j, ymin:ymax:100j]
positions = np.vstack([xx.ravel(), yy.ravel()])
values = np.vstack([x, y])
kernel = st.gaussian_kde(values)
f = np.reshape(kernel(positions).T, xx.shape)

fig = pl.figure()
ax = fig.gca()
ax.set_xlim(xmin, xmax)
ax.set_ylim(ymin, ymax)
# Contourf plot
cfset = ax.contourf(xx, yy, f, cmap='Blues')
## Or kernel density estimate plot instead of the contourf plot
#ax.imshow(np.rot90(f), cmap='Blues', extent=[xmin, xmax, ymin, ymax])
# Contour plot
cset = ax.contour(xx, yy, f, colors='k')
# Label plot
ax.clabel(cset, inline=1, fontsize=10)
ax.set_xlabel('Y1')
ax.set_ylabel('Y0')

pl.show()

前面的代码给出以下结果:

它有一个不透明的 x 轴、一个不透明的 y 轴和轮廓上的密度值。这是预期的结果吗?

【讨论】:

  • 这太有用了!感谢您的详细演示。我会使用你在这里所做的。
  • 如果我想在同一个图上绘制另一个数据集以比较两个数据,该怎么做。我想有相同的水平,以便我们可以正确比较@user3698176
猜你喜欢
  • 2013-07-23
  • 2015-12-20
  • 2017-05-25
  • 2016-12-10
  • 1970-01-01
  • 2014-04-14
  • 2012-11-23
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多