作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
创建 frozen distribution 时来自 scipy.stats
包,一旦分发实例被卡住,如何访问分发的名称?尝试访问 .name
属性会产生错误,因为它不再是 rv
变量的属性。
import scipy.stats as stats
# Get the name of the distribution
print 'gamma :', stats.norm.name
# Create frozen distribution
rv = stats.norm()
# Get the name of the frozen distribution
print 'rv :', rv.name
gamma : norm
rv :
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
9
10 # Get the name of the frozen distribution
---> 11 print 'rv :', rv.name
AttributeError: 'rv_frozen' object has no attribute 'name'
最佳答案
rv_frozen
类卡住分发,或rv_frozen
class在初始化期间创建分布实例,并将其存储在 self.dist
中属性。要访问原始分布的属性,请使用 rv.dist.{attribute}
。
import scipy.stats as stats
# Get the name of the distribution
print 'gamma :', stats.norm.name
# Create frozen distribution
rv = stats.norm()
# Get the name of the frozen distribution
print 'rv :', rv.dist.name
gamma : norm
rv : norm
关于python - 如何从 spicy.stats 获取分发名称。冷冻配送?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37511416/
使用 SpicIE 是否有限制? (使用 C#)开发 IE 扩展?如果在 SpicIE 中开发了一个 IE 扩展,然后需要将其开发为 BHO(C++?),是否必须从头开始重建? 最佳答案 我认为如果您
卡住分发 在scipy.stats你可以创建一个 frozen distribution这允许为该实例永久设置分布的参数化(形状、位置和比例)。 例如,您可以使用 a、loc 和 scale 参数创建
访问卡住分发的名称 创建 frozen distribution 时来自 scipy.stats包,一旦分发实例被卡住,如何访问分发的名称?尝试访问 .name 属性会产生错误,因为它不再是 rv 变
我已经为 OsX 安装了 brew install python2,然后我使用 pip install 安装了 numpy、scipy。 我也需要python3,所以我brew install pyt
我是一名优秀的程序员,十分优秀!