Searched refs:aggfunc (Results 1 - 5 of 5) sorted by relevance

/external/trappy/tests/trappy/stats/
H A DAggregator.py35 :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/trappy/trappy/stats/
H A DAggregator.py35 :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/
H A DSchedMatrix.py153 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))
H A DSchedAssert.py113 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/
H A Dtest_stats.py234 """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(serie function in function:TestAggregator.test_vector_aggfunc_multiple_trigger
[all...]

Completed in 150 milliseconds