scipy.stats.Mixture.

standard_deviation#

Mixture.standard_deviation(*, method=None)[源代码]#

标准差(二阶中心矩的平方根)

参数:
method{None, ‘formula’, ‘transform’, ‘normalize’, ‘quadrature’, ‘cache’}

用于计算中心二阶矩的方法。并非所有方法都适用于所有分布。有关详细信息,请参见 moment

另请参阅

方差
均值

参考文献

示例

使用所需的参数实例化分布

>>> from scipy import stats
>>> X = stats.Normal(mu=1., sigma=2.)

评估标准差

>>> X.standard_deviation()
2.0
>>> X.standard_deviation() == X.moment(order=2, kind='central')**0.5 == X.sigma
True