用法:
statistics.mode(data)
從離散或標稱
data
返回單個最常見的數據點。模式(當它存在時)是最典型的值,用作中心位置的度量。如果有多個具有相同頻率的模式,則返回在
data
中遇到的第一個模式。如果需要其中的最小或最大,請使用min(multimode(data))
或max(multimode(data))
。如果輸入data
為空,則引發StatisticsError
。mode
假定離散數據並返回單個值。這是學校普遍教授的模式的標準處理方式:>>> mode([1, 1, 2, 3, 3, 3, 3, 4]) 3
該模式的獨特之處在於它是此包中唯一適用於標稱(非數字)數據的統計信息:
>>> mode(["red", "blue", "blue", "red", "green", "red", "red"]) 'red'
在 3.8 版中更改:現在通過返回遇到的第一個模式來處理多模式數據集。以前,它提出了
StatisticsError
當發現不止一種模式時。
相關用法
- Python statistics.median_grouped用法及代碼示例
- Python statistics.median_high用法及代碼示例
- Python statistics.multimode用法及代碼示例
- Python statistics.mean用法及代碼示例
- Python statistics.median用法及代碼示例
- Python statistics.median_low用法及代碼示例
- Python statistics.quantiles用法及代碼示例
- Python statistics.correlation用法及代碼示例
- Python statistics.covariance用法及代碼示例
- Python statistics.NormalDist用法及代碼示例
- Python statistics.linear_regression用法及代碼示例
- Python statistics.pvariance用法及代碼示例
- Python statistics.harmonic_mean用法及代碼示例
- Python statistics.variance用法及代碼示例
- Python statistics mean()用法及代碼示例
- Python staticmethod()用法及代碼示例
- Python staticmethod用法及代碼示例
- Python Scipy stats.cumfreq()用法及代碼示例
- Python Scipy stats.nanmean()用法及代碼示例
- Python Scipy stats.gengamma()用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 statistics.mode。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。