如何计算python中元组列表的平均值?

时间:2012-05-18 16:03:05

标签: python statistics python-2.7 finance stocks

我有一个格式列表:

[(安全,支付价格,购买的股票数量)....]

[('MSFT', '$39.458', '1,000'), ('AAPL', '$638.416', '200'), ('FOSL', '$52.033', '1,000'), ('OCZ', '$5.26', '34,480'), ('OCZ', '$5.1571', '5,300')]

我想整合数据。这样每个安全性只列出一次。

[(安全名称,平均价格支付,拥有的股份数量),...]

4 个答案:

答案 0 :(得分:1)

目前还不是很清楚你要做什么。一些示例代码会提供帮助,以及您尝试过的一些信息。即使你的方法是错误的,它也会让我们模糊地了解你的目标。

与此同时,numpy的numpy.mean函数可能适合您的问题?我建议将你的元组列表转换为一个numpy数组,然后在一个所述数组的片上应用mean函数。

也就是说,它适用于任何类似列表的数据结构,您可以指定您希望执行平均值的访问。

http://docs.scipy.org/doc/numpy/reference/generated/numpy.mean.html

修改

根据我的收集,您的元组列表以下列方式组织数据:

(name, dollar ammount, weight)

我首先使用numpy将元组列表转换为数组。从那里,找到第一列中的唯一值(名称):

import numpy as np
a = np.array([(tag, 23.00, 5), (tag2, 25.00, 10)])
unique_tags = np.unique(a[0,:])  # note the slicing of the array

现在计算每个标签的平均值

meandic = {}
for element in unique_tags:
   tags = np.nonzero(a[0,:] == element)  # identify which lines are tagged with element
   meandic[element] = np.mean([t(1) * t(2) for t in a[tags]])

请注意,此代码未经测试。我可能弄错了小细节。如果你无法解决问题,只需发表评论,我很乐意纠正我的错误。你必须删除'$'并在必要时将字符串转换为浮点数。

答案 1 :(得分:1)

我使用dictionary作为输出。

lis=[('MSFT', '$39.458', '1,000'), ('AAPL', '$638.416', '200'), ('FOSL', '$52.033', '1,000'), ('OCZ', '$5.26', '34,480'), ('OCZ', '$5.1571', '5,300')]

dic={}
for x in lis:
    if x[0] not in dic:
     price=float(x[1].strip('$'))
     nos=int("".join(x[2].split(',')))
     #print(nos)
     dic[x[0]]=[price,nos]
    else:
     price=float(x[1].strip('$'))
     nos=int("".join(x[2].split(',')))
     dic[x[0]][1]+=nos
     dic[x[0]][0]=(dic[x[0]][0]+price)/2
print(dic)    

<强>输出:

{'AAPL': [638.416, 200], 'OCZ': [5.20855, 39780], 'FOSL': [52.033, 1000], 'MSFT': [39.458, 1000]}

答案 2 :(得分:0)

>>> lis
[('MSFT', '$39.458', '1,000'), ('AAPL', '$638.416', '200'), ('FOSL', '$52.033', '1,000'), ('OCZ', '$5.26', '34,480'), ('OCZ', '$5.1571', '5,300')]
>>> from collections import defaultdict
>>> d = defaultdict(list)
>>> for i in lis:
...    amt = float(i[1].strip('$'))
...    num = int(i[2].replace(",", ""))
...    d[i[0]].append((amt,num))
... 
>>> for i in d.iteritems():
...   average_price = sum([s[0] for s in i[1]])/len([s[0] for s in i[1]])
...   total_shares = sum([s[1] for s in i[1]])
...   print (i[0],average_price,total_shares)
... 
('AAPL', 638.416, 200)
('OCZ', 5.20855, 39780)
('FOSL', 52.033, 1000)
('MSFT', 39.458, 1000)

答案 3 :(得分:0)

你走了:

the_list = [('msft', '$31', 5), ('msft','$32', 10), ('aapl', '$100', 1)]
clean_list = map (lambda x: (x[0],float (x[1][1:]), int(x[2])), the_list)
out = {}

for name, price, shares in clean_list:
    if not name in out:
        out[name] = [price, shares]
    else:
        out[name][0] += price * shares
        out[name][1] += shares

# put the output in the requested format
# not forgetting to calculate avg price paid
# out contains total # shares and total price paid

nice_out = [ (name, "$%0.2f" % (out[name][0] / out[name][1]), out[name][1])
              for name in out.keys()]

print nice_out
>>> [('aapl', '$100.00', 1), ('msft', '$23.40', 15)]