Python 统计模块 mode() 方法

实例

计算给定数据的模式(中心趋势):

  1. # Import statistics Library
  2. import statistics
  3. # Calculate the mode
  4. print(statistics.mode([1, 3, 3, 3, 5, 7, 7, 9]))
  5. print(statistics.mode([1, 1, -3, 3, 7, -9]))
  6. print(statistics.mode(['red', 'green', 'blue', 'red']))

定义与用法

statistics.mode() 方法计算给定数值或标称数据集的模式(中心趋势)。


语法

  1. statistics.mode(data)

参数值

参数描述
data必填。要使用的数据值(可以是任何序列、列表或迭代器)

注意:如果数据为空,则返回统计错误。


技术细节

返回值:一个 float 或标称值,表示给定数据的模式
Python 版本:3.4
修改日志:3.8: 现在处理多模式数据集(将返回遇到的第一个模式)

分类导航