scipy.stats.moment(array, axis=0)
函数计算nth关于样本均值的矩,即沿着数组的指定轴的数组元素(python中的列表)。
其公式-
参数:
array :输入数组或对象具有要计算矩的元素。
axis :计算力矩所沿的轴。默认情况下,轴= 0。
moment :返回的中心矩的顺序。
返回:n-th基于设置的参数的数组元素的中心矩。
代码1:
# Moment
from scipy import stats
import numpy as np
arr1 = np.array([[1, 31, 27, 13, 21, 9],
[8, 12, 8, 4, 7, 10]])
print("Oth moment:\n", stats.moment(arr1, moment = 0))
输出:
Oth moment: [1. 1. 1. 1. 1. 1.]
代码2:多维数据
# Moment
from scipy import stats
import numpy as np
arr1 = [[1, 3, 27],
[3, 4, 6],
[7, 6, 3],
[3, 6, 8]]
print("Oth moment:\n", stats.moment(arr1, moment = 0))
print("\n6th moment:\n", stats.moment(arr1, moment = 6))
print("\n9th moment:\n", stats.moment(arr1, moment = 9, axis = None))
print("\n12th moment:\n", stats.moment(arr1, moment = 12, axis = 1))
print("\n10th moment:\n", stats.moment(arr1, moment = 10, axis = 1))
输出:
Oth moment: [1. 1. 1.] 6th moment: [5.20609375e+02 9.13256836e+00 4.26392850e+06] 9th moment: 55265909588.26437 12th moment: [1.53284936e+14 1.63654317e+02 8.83474172e+03 5.17842143e+04] 10th moment: [5.53094361e+11 6.10464868e+01 1.64971407e+03 7.65588508e+03]
相关用法
- Python Scipy stats.mean()用法及代码示例
- Python Scipy stats.sem()用法及代码示例
- Python Scipy stats.tmin()用法及代码示例
- Python Scipy stats.tsem()用法及代码示例
- Python Scipy stats.binned_statistic_2d()用法及代码示例
- Python Scipy stats.describe()用法及代码示例
- Python Scipy stats.tmax()用法及代码示例
- Python Scipy stats.tstd()用法及代码示例
- Python Scipy stats.binned_statistic_dd()用法及代码示例
- Python Scipy stats.binned_statistic()用法及代码示例
- Python Scipy stats.bayes_mvs()用法及代码示例
- Python Scipy stats.kurtosistest()用法及代码示例
注:本文由纯净天空筛选整理自vishal3096大神的英文原创作品 scipy stats.moment() function | Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。