本文簡要介紹 python 語言中 scipy.stats.tsem
的用法。
用法:
scipy.stats.tsem(a, limits=None, inclusive=(True, True), axis=0, ddof=1)#
計算均值的修剪標準誤。
此函數查找給定值的平均值的標準誤差,忽略給定限製之外的值。
- a: array_like
值數組。
- limits: 無或(下限、上限),可選
輸入數組中小於下限或大於上限的值將被忽略。當限製為無時,則使用所有值。元組中的任何一個限製值也可以是 None 表示半開區間。默認值為無。
- inclusive: (布爾,布爾),可選
由 (lower flag, upper flag) 組成的元組。這些標誌確定是否包含完全等於下限或上限的值。默認值為 (True, True)。
- axis: int 或無,可選
操作的軸。默認值為 0。如果沒有,則計算整個數組 a。
- ddof: 整數,可選
Delta 自由度。默認值為 1。
- tsem: 浮點數
均值的修剪標準誤。
參數 ::
返回 ::
注意:
tsem
使用無偏樣本標準差,即它使用校正因子n / (n - 1)
。例子:
>>> import numpy as np >>> from scipy import stats >>> x = np.arange(20) >>> stats.tsem(x) 1.3228756555322954 >>> stats.tsem(x, (3,17)) 1.1547005383792515
相關用法
- Python SciPy stats.tstd用法及代碼示例
- Python SciPy stats.theilslopes用法及代碼示例
- Python SciPy stats.triang用法及代碼示例
- Python SciPy stats.t用法及代碼示例
- Python SciPy stats.ttest_rel用法及代碼示例
- Python SciPy stats.tvar用法及代碼示例
- Python SciPy stats.trim_mean用法及代碼示例
- Python SciPy stats.ttest_ind_from_stats用法及代碼示例
- Python SciPy stats.truncpareto用法及代碼示例
- Python SciPy stats.ttest_1samp用法及代碼示例
- Python SciPy stats.ttest_ind用法及代碼示例
- Python SciPy stats.tmean用法及代碼示例
- Python SciPy stats.truncweibull_min用法及代碼示例
- Python SciPy stats.trim1用法及代碼示例
- Python SciPy stats.tmin用法及代碼示例
- Python SciPy stats.trimboth用法及代碼示例
- Python SciPy stats.tmax用法及代碼示例
- Python SciPy stats.truncexpon用法及代碼示例
- Python SciPy stats.truncnorm用法及代碼示例
- Python SciPy stats.tukeylambda用法及代碼示例
- Python SciPy stats.trapezoid用法及代碼示例
- Python SciPy stats.tiecorrect用法及代碼示例
- Python SciPy stats.tukey_hsd用法及代碼示例
- Python SciPy stats.anderson用法及代碼示例
- Python SciPy stats.iqr用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.stats.tsem。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。