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

  /external/trappy/trappy/stats/
Correlator.py 82 series_y = result_2[group_id]
86 series_y = self._resample(series_y)
88 series_x, series_y = shift_series(series_x, series_y, self._shift)
89 corr_output.append(self._correlate(series_x, series_y))
90 weights.append(len(series_x[series_x != 0]) + len(series_y[series_y != 0]))
  /external/bart/bart/sched/
functions.py 411 def binary_correlate(series_x, series_y):
425 :param series_y: Second time Series data
426 :type series_y: :mod:`pandas.Series`
429 if len(series_x) != len(series_y):
433 agree = len(series_x[series_x == series_y])
434 disagree = len(series_x[series_x != series_y])

Completed in 86 milliseconds