stanley-king před 2 roky
rodič
revize
092de26455
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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)]