stanley-king 2 年之前
父節點
當前提交
092de26455
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      plot/refill/ChannelPainter.py

+ 1 - 1
plot/refill/ChannelPainter.py

@@ -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)]