Python/ref stat mode
来自菜鸟教程
<languages />
Python statistics.mode()方法
例
计算给定数据的模式(集中趋势):
# Import statistics Library import statistics # Calculate the mode print(statistics.mode([1, 3, 3, 3, 5, 7, 7 9, 11])) print(statistics.mode([1, 1, 3, -5, 7, -9, 11])) print(statistics.mode(['red', 'green', 'blue', 'red']))
定义和用法
The
statistics.mode()
方法计算给定数值或标称数据集的模式(集中趋势)。
句法
statistics.mode(data)
参数值
参数 | 描述 |
---|---|
data | 需要。要使用的数据值(可以是任何序列,列表或迭代器) |
注意: If data 为空,则返回StatisticsError。
技术细节
返回值: | A
|
Python版本: | 3.4 |
变更记录: | 3.8:现在处理多峰数据集(将返回遇到的第一个模式) |