core
kiyopy
pipeline
container
timestream
rfi
cal
map
foreground
ps
plot
utils
Counter.
most_common
List the n most common elements and their counts from the most common to the least. If n is None, then list all element counts.
>>> Counter('abcdeabcdabcaba').most_common(3) [('a', 5), ('b', 4), ('c', 3)]