Make module cloud sizes relative to the smallest number that's present, not 0.

This commit is contained in:
Georg Brandl 2007-07-30 19:47:15 +00:00
parent fa844c2634
commit d8718232f2

View File

@ -339,9 +339,11 @@ class DocumentationApplication(object):
"""
most_frequent = heapq.nlargest(30, self.freqmodules.iteritems(),
lambda x: x[1])
if most_frequent:
base_count = most_frequent[0][1]
most_frequent = [{
'name': x[0],
'size': 100 + math.log(x[1] or 1) * 20,
'size': 100 + math.log((x[1] - base_count) + 1) * 20,
'count': x[1]
} for x in sorted(most_frequent)]