用法:
statistics.median(data)
使用常见的“中间二的平均值”方法返回数值数据的中值(中间值)。如果
data
为空,则引发StatisticsError
。data
可以是序列或可迭代的。中位数是对中心位置的有力衡量,受异常值存在的影响较小。当数据点数为奇数时,返回中间数据点:
>>> median([1, 3, 5]) 3
当数据点数为偶数时,通过取两个中间值的平均值来插值中位数:
>>> median([1, 3, 5, 7]) 4.0
这适用于您的数据是离散的,并且您不介意中位数可能不是实际数据点的情况。
如果数据是有序的(支持顺序操作)但不是数字的(不支持加法),请考虑改用
median_low()
或median_high()
。
相关用法
- Python statistics.median_grouped用法及代码示例
- Python statistics.median_high用法及代码示例
- Python statistics.median_low用法及代码示例
- Python statistics.mean用法及代码示例
- Python statistics.multimode用法及代码示例
- Python statistics.mode用法及代码示例
- 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.median。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。