scipy.stats.hmean(array, axis=0, dtype=None)
計算沿數組指定軸(python中的列表)的數組元素的諧波均值。
它的公式-
參數:
array: 輸入數組或對象,具有用於計算諧波均值的元素。
axis: 要計算平均值的軸。默認情況下軸= 0
dtype: 可選的。它設置返回元素的類型。
返回值:基於設置參數的數組元素的諧波平均值。
代碼1:
# Harmonic Mean
from scipy.stats.mstats import hmean
arr1 = hmean([1, 3, 27])
print("Harmonic Mean is :", arr1)
輸出:
Harmonic Mean is : 2.18918918919
代碼2:使用多維數據
# Harmonic Mean
from scipy.stats.mstats import hmean
arr1 = [[1, 3, 27],
[3, 4, 6],
[7, 6, 3],
[3, 6, 8]]
print("\nHarmonic Mean is :", hmean(arr1))
# using axis = 0
print("\nHarmonic Mean is with default axis = 0 : \n",
hmean(arr1, axis = 0))
# using axis = 1
print("\nHarmonic Mean is with default axis = 1 : \n",
hmean(arr1, axis = 1))
輸出:
Harmonic Mean is : [ 2.21052632 4.36363636 6.04195804] Harmonic Mean is with default axis = 0 : [ 2.21052632 4.36363636 6.04195804] Harmonic Mean is with default axis = 1 : [ 2.18918919 4. 4.66666667 4.8 ]
相關用法
- Python Scipy stats.chi()用法及代碼示例
- Python Scipy stats.f()用法及代碼示例
- Python Scipy stats.halflogistic()用法及代碼示例
- Python Scipy stats.alpha()用法及代碼示例
- Python Scipy stats.halfnorm()用法及代碼示例
- Python Scipy stats.gompertz()用法及代碼示例
- Python Scipy stats.genlogistic()用法及代碼示例
- Python Scipy stats.fatiguelife()用法及代碼示例
- Python Scipy stats.fisk()用法及代碼示例
- Python Scipy stats.tmean()用法及代碼示例
- Python Scipy stats.genexpon()用法及代碼示例
- Python Scipy stats.genpareto()用法及代碼示例
- Python Scipy stats.mean()用法及代碼示例
- Python Scipy stats.gumbel_r()用法及代碼示例
- Python Scipy stats.gilbrat()用法及代碼示例
注:本文由純淨天空篩選整理自vishal3096大神的英文原創作品 sciPy stats.hmean() | Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。