ATLAS Offline Software
Loading...
Searching...
No Matches
python.ext Namespace Reference

Namespaces

namespace  lsprofcalltree
namespace  silence
namespace  table_printer
namespace  thousands

Functions

 tally (stuff)

Function Documentation

◆ tally()

python.ext.tally ( stuff)
From python thread http://mail.python.org/pipermail/python-dev/2006-April/063462.html
Subject: [Python-Dev] tally (and other accumulators)

Definition at line 4 of file DataQuality/DQUtils/python/ext/__init__.py.

4def tally(stuff):
5 """
6 From python thread http://mail.python.org/pipermail/python-dev/2006-April/063462.html
7 Subject: [Python-Dev] tally (and other accumulators)
8 """
9 accumulator = defaultdict(int)
10 for element in stuff:
11 accumulator[element] += 1
12 return sorted(accumulator.iteritems())
13