HomeSort by relevance Sort by last modified time
    Searched refs:aggfunc (Results 1 - 4 of 4) sorted by null

  /external/trappy/trappy/stats/
Aggregator.py 35 :param aggfunc: Function that accepts a pandas.Series and
37 :type aggfunc: function
45 def __init__(self, indexer, aggfunc=None):
49 self._aggfunc = aggfunc
89 def __init__(self, triggers, topology, aggfunc=None):
98 :param aggfunc: A function to be applied on each series being aggregated.
100 will be processed by the aggfunc
101 :type aggfunc: function
107 self).__init__(MultiTriggerIndexer(triggers), aggfunc)
  /external/bart/bart/sched/
SchedMatrix.py 153 aggfunc=sched_funcs.csum):
163 self._matrix = self._generate_matrix(run, reference_run, aggfunc)
183 def _generate_matrix(self, run, reference_run, aggfunc):
199 aggfunc))
209 aggfunc))
SchedAssert.py 113 def _aggregator(self, aggfunc):
116 aggfunc, the aggregators are memoized for performance
118 :param aggfunc: Function parameter that
125 if aggfunc not in self._aggs.keys():
126 self._aggs[aggfunc] = MultiTriggerAggregator(self._triggers,
128 aggfunc)
129 return self._aggs[aggfunc]
  /external/trappy/tests/
test_stats.py 234 """TestAggregator: 1 trigger scalar aggfunc"""
236 def aggfunc(series): function in function:TestAggregator.test_scalar_aggfunc_single_trigger
255 aggfunc=aggfunc)
271 """TestAggregator: 1 trigger vector aggfunc"""
273 def aggfunc(series): function in function:TestAggregator.test_vector_aggfunc_single_trigger
288 aggfunc=aggfunc)
300 """TestAggregator: multi trigger vector aggfunc"""
302 def aggfunc(series) function in function:TestAggregator.test_vector_aggfunc_multiple_trigger
    [all...]

Completed in 125 milliseconds