Lines Matching refs:statistics
121 statistics = []
132 statistics.append(stat)
136 statistics.append(stat)
137 return statistics
507 # cumulative statistics
528 def statistics(self, key_type, cumulative=False):
530 Group statistics by key_type. Return a sorted list of Statistic
534 statistics = list(grouped.values())
535 statistics.sort(reverse=True, key=Statistic._sort_key)
536 return statistics
541 statistics as a sorted list of StatisticDiff instances, grouped by
546 statistics = _compare_grouped_stats(old_group, new_group)
547 statistics.sort(reverse=True, key=StatisticDiff._sort_key)
548 return statistics