|
@@ -109,7 +109,7 @@ class ChannelPainter(object):
|
|
|
for _chname, _card_type, _spec, _data in gen:
|
|
|
succ, count, y = calc_chratios(_data, pos_map, self._start_time - day_stamp, self._end_time - day_stamp)
|
|
|
print(_chname)
|
|
|
- y = np.convolve(y, window, 'same')
|
|
|
+ # y = np.convolve(y, window, 'same')
|
|
|
ax.plot(x, y, ls='-', label=self._label(chname=_chname, succ=succ, count=count, card_type=_card_type, spec=_spec))
|
|
|
|
|
|
ticks = [d - self._start_time for d in range(self._start_time, self._end_time + 1, self._interval)]
|