(self, xs, ys=None, color=(0,0,255), lw=2)
| 72 | self.update() |
| 73 | |
| 74 | def add_data(self, xs, ys=None, color=(0,0,255), lw=2): |
| 75 | if ys is None: |
| 76 | ys, xs = xs, np.arange(len(xs)) |
| 77 | self.data.append((xs, ys, color, lw)) |
| 78 | |
| 79 | def draw_coord(self, dc, w, h, l, t, r, b): |
| 80 | xs = [5, 10, 20, 40, 50, 100, 200, 400, 500, 1000, 2000, 4000, 10000] |
no test coverage detected