当前位置: 首页>>代码示例>>Python>>正文


Python Ellipse.get_ec方法代码示例

本文整理汇总了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'], 
开发者ID:sbitzer,项目名称:BayesTutorial,代码行数:33,代码来源:estimating_a_mean.py


注:本文中的matplotlib.patches.Ellipse.get_ec方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。