Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

defaultdict and tuples

Tags:

python

I wanted to do the following:

d = defaultdict((int,float))
for z in range( lots_and_lots):
  d['operation one'] += (1,5.67)
  ...
  ...
  d['operation two'] += (1,4.56)

And then output the number of times each operation was called and the total of float value.

for k,v in d.items():
  print k, 'Called', v[0], 'times, total =', v[1] 

But I don't know how to achieve this as not only can't you use a tuple as a parameter to defaultdict you can't add a tuple to a tuple and total the values in the tuple you just get extra values in your tuple. i.e:

>>> x = (1,0)
>>> x+= (2,3)
>>> x
(1, 0, 2, 3)

and not

>>> x = (1,0)
>>> x+= (2,3)
>>> x
(3,3)

How can I get what I want?

like image 622
Martlark Avatar asked Dec 13 '11 03:12

Martlark


3 Answers

I assuming you have too many operations to simply store the list of values in each entry?

d = defaultdict(list)
for z in range(lots_and_lots):
  d['operation one'].append(5.67)
  ...
  ...
  d['operation two'].append(4.56)
for k,v in d.items():
  print k, 'Called', len(v), 'times, total =', sum(v)

One thing you could do is make a custom incrementor:

class Inc(object):
    def __init__(self):
        self.i = 0
        self.t = 0.0
    def __iadd__(self, f):
        self.i += 1
        self.t += f
        return self

and then

d = defaultdict(Inc)
for z in range(lots_and_lots):
  d['operation one'] += 5.67
  ...
  ...
  d['operation two'] += 4.56
for k,v in d.items():
  print k, 'Called', v.i, 'times, total =', v.t
like image 31
David Z Avatar answered Oct 31 '22 16:10

David Z


You could do it with collections.Counter to accumulate the results:

>>> from collections import Counter, defaultdict
>>> d = defaultdict(Counter)
>>> d['operation_one'].update(ival=1, fval=5.67)
>>> d['operation_two'].update(ival=1, fval=4.56)
like image 95
Raymond Hettinger Avatar answered Oct 31 '22 15:10

Raymond Hettinger


the argument to defaultdict must be a "callable" that returns a default value. define your default dict like so:

d = defaultdict(lambda: (0, 0.0))

The fact that int and float types can be called and return zero's is a convenience, but not in any way crucial to the way defaultdict works.

getting the += to work is going to cause some trouble; addition across tuples is the concatantion of the tuples, so you'll have to do it the long way:

left, right = d["key"]
d["key"] = (left + 2, right + 3)

Edit: if you just must use +=, you can do so, so long as you have a collection type that has the desired operations. fileoffset suggests using a numpy array type, and that's probably a nice idea, but you can get a close approximation just by subclassing tuple and overriding the operators you need: Here's a rough sketch of one:

class vector(tuple):
    def __add__(self, other):
        return type(self)(l+r for l, r in zip(self, other))
    def __sub__(self, other):
        return type(self)(l-r for l, r in zip(self, other))
    def __radd__(self, other):
        return type(self)(l+r for l, r in zip(self, other))
    def __lsub__(self, other):
        return type(self)(r-l for l, r in zip(self, other))

from collections import defaultdict

d = defaultdict(lambda:vector((0, 0.0)))
for k in range(5):
    for j in range(5):
        d[k] += (j, j+k)

print d

we don't need (or want) to actually overload the += operator itself (spelled __iadd__) because tuple is immutable. Python will correctly replace the old value with new if you supply addition.

like image 19
SingleNegationElimination Avatar answered Oct 31 '22 15:10

SingleNegationElimination