3

セレクターを使用して 1 つを除いて、Python dict のすべての値を合計する方法はありますか

>>> x = dict(a=1, b=2, c=3)
>>> np.sum(x.values())
6

? 私の現在の解決策は、ループベースのものです:

>>> x = dict(a=1, b=2, c=3)
>>> y = 0
>>> for i in x:
...     if 'a' != i:
...             y += x[i]
... 
>>> y
5

編集:

import numpy as np
from scipy.sparse import *
x = dict(a=csr_matrix(np.array([1,0,0,0,0,0,0,0,0]).reshape(3,3)),      b=csr_matrix(np.array([0,0,0,0,0,0,0,0,1]).reshape(3,3)), c=csr_matrix(np.array([0,0,0,0,0,0,0,0,1]).reshape(3,3)))
y = csr_matrix((3,3))
for i in x: 
    if 'a' != i:
        y = y + x[i]
print y

戻り値(2, 2) 2.0

print np.sum(value for key, value in x.iteritems() if key != 'a')

上げる

File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-    packages/numpy/core/fromnumeric.py", line 1446, in sum
    res = _sum_(a)
File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/compressed.py", line 187, in __radd__
    return self.__add__(other)
File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scipy/sparse/compressed.py", line 173, in __add__
    raise NotImplementedError('adding a scalar to a CSC or CSR '
NotImplementedError: adding a scalar to a CSC or CSR matrix is not supported
4

3 に答える 3

8

dict をループして、sumメソッドのジェネレーターを作成できます。

np.sum(value for key, value in x.iteritems() if key != 'a')
于 2012-07-30T09:41:03.867 に答える
4

試す:

np.sum(x.values()) - x['a']
于 2012-07-30T09:56:53.157 に答える
2

sumメソッドのアキュムレータまたは初期値を指定する必要があります。

sum((value for key, value in x.iteritems() if key != 'a'), csr_matrix((3, 3)))

これは組み込みsumメソッドを使用していることに注意してください。ループベースのソリューションと実質的に同じです。

引数を渡さないnp.sumため、使用は機能しません。とにかく、密行列用に設計されています。np.sumout

np.sum((value for key, value in x.iteritems() if key != 'a'),
       out=csr_matrix((3, 3)))    # doesn't work
于 2012-07-30T10:20:03.910 に答える