【发布时间】:2015-02-23 01:55:09
【问题描述】:
我有以下正态分布点:
import numpy as np
from matplotlib import pylab as plt
from matplotlib import mlab
mean_test = np.array([0,0])
cov_test = array([[ 0.6744121 , -0.16938146],
[-0.16938146, 0.21243464]])
协方差矩阵是确定的半正矩阵,因此可以用作协方差
# Semi-positive definite if all eigenvalues are 0 or
# if there exists a Cholesky decomposition
print np.linalg.eigvals(cov_test)
print np.linalg.cholesky(cov_test)
[0.72985988 0.15698686]
[[ 0.82122597 0. ] [-0.20625439 0.41218172]]
如果我产生一些分数,我会得到:
data_test = np.random.multivariate_normal(mean_test, cov_test, 1000)
plt.scatter(data_test[:,0],data_test[:,1])
问题:
当我尝试绘制协方差等值线时,为什么 bivariate_normal 方法会失败(返回 NaN)?
x = np.arange(-3.0, 3.0, 0.1)
y = np.arange(-3.0, 3.0, 0.1)
X, Y = np.meshgrid(x, y)
Z = mlab.bivariate_normal(X, Y,
cov_test[0,0], cov_test[1,1],
0, 0, cov_test[0,1])
print Z
plt.contour(X, Y, Z)
输出:
[[ nan nan nan ..., nan nan nan]
[ nan nan nan ..., nan nan nan]
[ nan nan nan ..., nan nan nan]
...,
[ nan nan nan ..., nan nan nan]
[ nan nan nan ..., nan nan nan]
[ nan nan nan ..., nan nan nan]]
ValueError: zero-size array to reduction operation minimum which has no identity
【问题讨论】:
标签: python matplotlib scipy statistics