本文整理汇总了Python中matplotlib.patches.Ellipse.get_ec方法的典型用法代码示例。如果您正苦于以下问题:Python Ellipse.get_ec方法的具体用法?Python Ellipse.get_ec怎么用?Python Ellipse.get_ec使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类matplotlib.patches.Ellipse
的用法示例。
在下文中一共展示了Ellipse.get_ec方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_cov_ellipse_params
# 需要导入模块: from matplotlib.patches import Ellipse [as 别名]
# 或者: from matplotlib.patches.Ellipse import get_ec [as 别名]
fig = plt.figure(figsize=figsz)
ax = plt.axes(aspect='equal')
plt.axis([-10, 10, -10, 10])
# common ellipse properties
ellprops = {'facecolor': 'none', 'lw': 2}
# plot prior
width, height, theta = get_cov_ellipse_params(prior_cov)
prior_ell = Ellipse(xy=prior_mu, width=width, height=height, angle=theta,
edgecolor=next(ax._get_lines.prop_cycler)['color'],
**ellprops)
ax.add_artist(prior_ell)
# handles for legend
lh = [lines.Line2D([], [], color=prior_ell.get_ec(), label='prior')]
# plot dots
dots = plt.plot(0, 0, '.', visible=False)[0]
lh.append(lines.Line2D([], [], ls='none', marker='.', color=dots.get_color(),
label='data'))
# sample mean
smean = plt.plot(0, 0, '+', mew=2, visible=False)[0]
lh.append(lines.Line2D([], [], ls='none', marker='+', color=smean.get_color(),
label='sample mean'))
# plot posterior of mean
width, height, theta = get_cov_ellipse_params(prior_cov)
post_ell = Ellipse(xy=prior_mu, width=width, height=height, angle=theta,
edgecolor=next(ax._get_lines.prop_cycler)['color'],