首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >在python中获取列表的百分比范围

在python中获取列表的百分比范围
EN

Stack Overflow用户
提问于 2018-06-28 08:03:23
回答 1查看 2.6K关注 0票数 -1

我正在尝试查找列表中给定百分比的数据范围。我希望我的结果是该范围的最高和最低极值。这是迄今为止我所拥有的最简单可行的解决方案。“字符串格式化只是为了测试,当我实现它时,它将只返回所需的值”。如果你不理解我想要实现的目标,那么运行我的代码,你应该能够理解我想要实现的目标。

代码语言:javascript
复制
#Sample Data List
data = [
    4.252, 5.878, 1.435, -0.112, 6.97, -1.812, 0.887, 1.724, -1.452, 5.193,
    -1.001, 11.085, 1.335, 11.763, -7.284, -1.733, 3.175, 3.077, 0.249, -2.095,
    -0.253, 11.095, 5.184, 1.45, -3.882, 8.251, -4.234, -0.096, 5.957, -4.473,
    -3.874, 3.246, -0.929, -1.707, 2.079, 0.647, -8.189, 2.074, 3.226, 0.123,
    -3.097, -5.706, 4.276, 7.377, -5.861, 0.357, 0.966, -0.63, 2.129, 1.514,
    6.82, -1.854, 8.394, 5.141, -4.501, 1.307, -2.812, -0.348, 2.729, 2.232,
    4.096, -2.257, -4.802, -1.116, 1.346, 4.733, -1.391, -2.986, 2.8, 4.949,
    -4.101, 2.727, -1.267, -15.034, 5.322, 7.011, 6.36, 0.16, 0.719, 4.302,
    1.365, 3.098, -2.892, -4.589, -5.516, 2.182, -6.019, -6.75, 15.499, -4.58,
    3.516, 1.18, 9.648, -1.21, -10.911, -0.583, -0.545, 3.286, 0.51, 9.578,
    -2.444, 2.771, -3.846, -3.819, 1.877, 1.392, -2.784, -5.907, 4.206, 1.42,
    -2.279, -0.358, -0.649, 2.052, 1.04, 1.764, -3.156, -2.685, 0.106, 3.569,
    0.944, 3.797, -0.76, 4.89, -3.014, -2.118, -1.142, -1.578, -8.84, 3.034,
    -2.693, -2.989, -0.815, -2.504, 3.147, 1.596, -2.94, 0.906, -0.154, -3.765
     ]

#Input for percent range
percent = 50

#Get half of percentage
halfPercent = int(int((len(data) * float('.'+str(percent))/2)))

#Build string for printing later and create a counter
string = str(percent)+'% of data entries are beween values '
counter = 0

#Sort data and iterate up until it get to the counter gets to the halfPercent
for item in sorted(data):
    if item >= 0:
        counter += 1
        if counter >= halfPercent:
            string += str(item)
            counter = 0
            break
string += ' and '

#Sort data and iterate up until it get to the counter gets to the halfPercent
for item in sorted(data, reverse=True):
    if item <= 0:
        counter += 1
        if counter >= halfPercent:
            string += str(item)
            break

#Do the printing
print 'Min is ' + str(min(data)) + ' and Max is ' + str(max(data))
print string

这看起来不是很有pythonic风格,而且对于它所做的很少,它有很多代码。有什么更好、更有效的方法吗?

编辑并更新...使用并稍微更改@DMfll发布的答案代码很有帮助。这是我的新代码。

代码语言:javascript
复制
#Sample data
data = [
    4.252, 5.878, 1.435, -0.112, 6.97, -1.812, 0.887, 1.724, -1.452, 5.193,
    -1.001, 11.085, 1.335, 11.763, -7.284, -1.733, 3.175, 3.077, 0.249, -2.095,
    -0.253, 11.095, 5.184, 1.45, -3.882, 8.251, -4.234, -0.096, 5.957, -4.473,
    -3.874, 3.246, -0.929, -1.707, 2.079, 0.647, -8.189, 2.074, 3.226, 0.123,
    -3.097, -5.706, 4.276, 7.377, -5.861, 0.357, 0.966, -0.63, 2.129, 1.514,
    6.82, -1.854, 8.394, 5.141, -4.501, 1.307, -2.812, -0.348, 2.729, 2.232,
    4.096, -2.257, -4.802, -1.116, 1.346, 4.733, -1.391, -2.986, 2.8, 4.949,
    -4.101, 2.727, -1.267, -15.034, 5.322, 7.011, 6.36, 0.16, 0.719, 4.302,
    1.365, 3.098, -2.892, -4.589, -5.516, 2.182, -6.019, -6.75, 15.499, -4.58,
    3.516, 1.18, 9.648, -1.21, -10.911, -0.583, -0.545, 3.286, 0.51, 9.578,
    -2.444, 2.771, -3.846, -3.819, 1.877, 1.392, -2.784, -5.907, 4.206, 1.42,
    -2.279, -0.358, -0.649, 2.052, 1.04, 1.764, -3.156, -2.685, 0.106, 3.569,
    0.944, 3.797, -0.76, 4.89, -3.014, -2.118, -1.142, -1.578, -8.84, 3.034,
    -2.693, -2.989, -0.815, -2.504, 3.147, 1.596, -2.94, 0.906, -0.154, -3.765
]

#Percent value needs to be variable
percent = 90

#Sorting and finding the percentage of data
half_way = int(len(data)*(float(""".{}""".format(percent))/2))

#Dictionary that will be returned from function later
returnDict = {
    'max' :  max(data),
    'min' : min(data),
    'high' : max([item for item in sorted(data) if item >= 0][0:half_way]),
    'low' : min([item for item in reversed(sorted(data)) if item <= 0][0:half_way])
}
#Print simply to view data
print """Max is {}, Min is {} and {}% of data entries are between values {} and {}""".format(returnDict['max'],
                                                                                             returnDict['min'],
                                                                                             percent,
                                                                                             returnDict['low'],
                                                                                             returnDict['high'])

输出如下所示。

代码语言:javascript
复制
Max is 15.499, Min is -15.034 and 90% of data entries are between values -8.84 and 6.36

我仍然想知道是否可以用更少的代码来完成。也许使用numpy或其他库?

EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/51072977

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档