web-dev-qa-db-ja.com

Pythonを使用した2Dカーネル密度推定のプロット

2Dカーネル密度推定をプロットしたいと思います。私はここで海のパッケージがとても便利だと思います。しかし、長い間検索した結果、y軸とx軸を不透明にする方法がわかりませんでした。また、コンターの密度の値を表示するにはどうすればよいですか?誰かが私を助けていただければ幸いです。以下のコードとグラフをご覧ください。 enter image description here

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()
19
user3698176

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()

上記のコードは次の結果をもたらします:

plot_kernel_density.jpg

これは、不透明なx軸、不透明なy軸、および等高線上の密度の値を持っています。これは期待される結果ですか?

40
Flabetvibes

これらの例を確認しましたか?

http://matplotlib.org/examples/pylab_examples/contour_demo.html

One example of contour_demoand another one (other options)

http://matplotlib.org/examples/pylab_examples/contourf_demo.html

One example of contourf_demoand 4 plots stacked

下にスクロールして他の画像を表示します。

1
jcoppens