| 1269 | |
| 1270 | |
| 1271 | class IndexCount(Reduction): |
| 1272 | _parameters = ["frame", "split_every"] |
| 1273 | _defaults = {"split_every": False} |
| 1274 | reduction_chunk = staticmethod(methods.index_count) |
| 1275 | reduction_aggregate = staticmethod(np.sum) |
| 1276 | # aggregate_chunk = staticmethod(np.sum) |
| 1277 | |
| 1278 | |
| 1279 | class Mode(Reduction): |
no outgoing calls
no test coverage detected
searching dependent graphs…