在Python中查找列表的中位数

编程入门 行业动态 更新时间:2024-10-23 01:57:59
本文介绍了在Python中查找列表的中位数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

如何在Python中找到列表的中位数?该列表可以是任何大小,并且不能保证数字以任何特定顺序排列.

How do you find the median of a list in Python? The list can be of any size and the numbers are not guaranteed to be in any particular order.

如果列表包含偶数个元素,则该函数应返回中间两个元素的平均值.

If the list contains an even number of elements, the function should return the average of the middle two.

以下是一些示例(出于显示目的排序):

Here are some examples (sorted for display purposes):

median([1]) == 1 median([1, 1]) == 1 median([1, 1, 2, 4]) == 1.5 median([0, 2, 5, 6, 8, 9, 9]) == 6 median([0, 0, 0, 0, 4, 4, 6, 8]) == 2

推荐答案

Python 3.4具有 statistics.median :

Python 3.4 has statistics.median:

返回数字数据的中值(中间值).

Return the median (middle value) of numeric data.

当数据点数为奇数时,返回中间数据点. 当数据点数为偶数时,通过取两个中间值的平均值来对中位数进行插值:

When the number of data points is odd, return the middle data point. When the number of data points is even, the median is interpolated by taking the average of the two middle values:

>>> median([1, 3, 5]) 3 >>> median([1, 3, 5, 7]) 4.0

用法:

import statistics items = [6, 1, 8, 2, 3] statistics.median(items) #>>> 3

对类型也要非常小心:

statistics.median(map(float, items)) #>>> 3.0 from decimal import Decimal statistics.median(map(Decimal, items)) #>>> Decimal('3')

更多推荐

在Python中查找列表的中位数

本文发布于:2023-11-29 16:39:27,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1646967.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:中位数   列表   Python

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!