1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > 二维正态分布采样置信椭圆绘制-Python

二维正态分布采样置信椭圆绘制-Python

时间:2020-08-25 18:24:20

相关推荐

二维正态分布采样置信椭圆绘制-Python

二维正态分布采样后,绘制置信椭圆

假设二维正态分布表示为:

[x1x2]∼N([μ1μ2],[Σ11Σ12Σ21Σ22])\left[\begin{array}{c} x_1 \\ x_2 \end{array}\right] \sim \mathcal{N}\left( \left[\begin{array}{c} \mu_1 \\ \mu_2 \end{array}\right], \left[\begin{array}{cc} \Sigma_{11} & \Sigma_{12}\\ \Sigma_{21} & \Sigma_{22} \end{array}\right] \right) [x1​x2​​]∼N([μ1​μ2​​],[Σ11​Σ21​​Σ12​Σ22​​])

下图为两个二维高斯分布采样后的置信椭圆

N([40],[1.00.90.90.5])\mathcal{N}\left( \left[\begin{array}{c} 4 \\ 0 \end{array}\right], \left[\begin{array}{cc} 1.0 & 0.9\\ 0.9 & 0.5 \end{array}\right] \right) N([40​],[1.00.9​0.90.5​])

N([52],[1.00.00.01.0])\mathcal{N}\left( \left[\begin{array}{c} 5 \\ 2 \end{array}\right], \left[\begin{array}{cc} 1.0 & 0.0\\ 0.0 & 1.0 \end{array}\right] \right) N([52​],[1.00.0​0.01.0​])

每个二维高斯分布采样100个数据点,图片为:

代码如下:

#!/usr/bin/env python# -*- coding: utf-8 -*-import numpy as npimport matplotlib as mplimport matplotlib.pyplot as pltdef make_ellipses(mean, cov, ax, confidence=5.991, alpha=0.3, color="blue", eigv=False, arrow_color_list=None):"""多元正态分布mean: 均值cov: 协方差矩阵ax: 画布的Axes对象confidence: 置信椭圆置信率 # 置信区间, 95%: 5.991 99%: 9.21 90%: 4.605 alpha: 椭圆透明度eigv: 是否画特征向量arrow_color_list: 箭头颜色列表"""lambda_, v = np.linalg.eig(cov) # 计算特征值lambda_和特征向量v# print "lambda: ", lambda_# print "v: ", v# print "v[0, 0]: ", v[0, 0]sqrt_lambda = np.sqrt(np.abs(lambda_)) # 存在负的特征值, 无法开方,取绝对值s = confidencewidth = 2 * np.sqrt(s) * sqrt_lambda[0] # 计算椭圆的两倍长轴height = 2 * np.sqrt(s) * sqrt_lambda[1] # 计算椭圆的两倍短轴angle = np.rad2deg(np.arccos(v[0, 0])) # 计算椭圆的旋转角度ell = mpl.patches.Ellipse(xy=mean, width=width, height=height, angle=angle, color=color) # 绘制椭圆ax.add_artist(ell)ell.set_alpha(alpha)# 是否画出特征向量if eigv:# print "type(v): ", type(v)if arrow_color_list is None:arrow_color_list = [color for i in range(v.shape[0])]for i in range(v.shape[0]):v_i = v[:, i]scale_variable = np.sqrt(s) * sqrt_lambda[i]# 绘制箭头"""ax.arrow(x, y, dx, dy, # (x, y)为箭头起始坐标,(dx, dy)为偏移量width, # 箭头尾部线段宽度length_includes_head, # 长度是否包含箭头head_width, # 箭头宽度head_length, # 箭头长度color, # 箭头颜色)"""ax.arrow(mean[0], mean[1], scale_variable*v_i[0], scale_variable * v_i[1], width=0.05, length_includes_head=True, head_width=0.2, head_length=0.3,color=arrow_color_list[i])# ax.annotate("", # xy=(mean[0] + lambda_[i] * v_i[0], mean[1] + lambda_[i] * v_i[1]),# xytext=(mean[0], mean[1]),# arrowprops=dict(arrowstyle="->", color=arrow_color_list[i]))# v, w = np.linalg.eigh(cov)# print "v: ", v# # angle = np.rad2deg(np.arccos(w))# u = w[0] / np.linalg.norm(w[0])# angle = np.arctan2(u[1], u[0])# angle = 180 * angle / np.pi# s = 5.991 # 置信区间, 95%: 5.991 99%: 9.21 90%: 4.605 # v = 2.0 * np.sqrt(s) * np.sqrt(v)# ell = mpl.patches.Ellipse(xy=mean, width=v[0], height=v[1], angle=180 + angle, color="red")# ell.set_clip_box(ax.bbox)# ell.set_alpha(0.5)# ax.add_artist(ell)def plot_2D_gaussian_sampling(mean, cov, ax, data_num=100, confidence=5.991, color="blue", alpha=0.3, eigv=False):"""mean: 均值cov: 协方差矩阵ax: Axes对象confidence: 置信椭圆的置信率data_num: 散点采样数量color: 颜色alpha: 透明度eigv: 是否画特征向量的箭头"""if isinstance(mean, list) and len(mean) > 2:print "多元正态分布,多于2维"mean = mean[:2]cov_temp = []for i in range(2):cov_temp.append(cov[i][:2])cov = cov_tempelif isinstance(mean, np.ndarray) and mean.shape[0] > 2:mean = mean[:2]cov = cov[:2, :2]data = np.random.multivariate_normal(mean, cov, 100)x, y = data.Tplt.scatter(x, y, s=10, c=color)make_ellipses(mean, cov, ax, confidence=confidence, color=color, alpha=alpha, eigv=eigv)def main():# plt.figure("Multivariable Gaussian Distribution")plt.rcParams["figure.figsize"] = (8.0, 8.0)fig, ax = plt.subplots()ax.set_xlabel("x")ax.set_ylabel("y")print "ax:", axmean = [4, 0]cov = [[1, 0.9], [0.9, 0.5]]plot_2D_gaussian_sampling(mean=mean, cov=cov, ax=ax, eigv=True, color="r")mean1 = [5, 2]cov1 = [[1, 0],[0, 1]]plot_2D_gaussian_sampling(mean=mean1, cov=cov1, ax=ax, eigv=True)plt.savefig("./get_pickle_data/pic/gaussian_covariance_matrix.png")plt.show()if __name__ == "__main__":main()

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。