Lines Matching defs:count
155 """_sum(data) -> (type, sum, count)
158 together with the type to be converted to and the count of items.
186 count = 0
194 count += 1
205 return (T, total, count)
218 T, ssd, count = _sum((d := x - c) * d for x in data)
219 return (T, ssd, c, count)
220 count = 0
228 count += 1
231 if not count:
243 ssd = (count * sxx - sx * sx) / count
244 c = sx / count
246 return (T, ssd, c, count)
450 def count(iterable):
454 data = count(data)
541 T, total, count = _sum(w / x if w else 0 for w, x in zip(weights, data))
733 return [value for value, count in counts.items() if count == maxcount]