Lines Matching refs:Y
128 Y = [s.foregroundWrittenBytes for s in self.snapshots]
129 if any([y > 0 for y in Y]):
130 plt.plot(X, Y, 'b-')
131 minY = min(minY, min(Y))
132 maxY = max(maxY, max(Y))
134 Y = [s.backgroundWrittenBytes for s in self.snapshots]
135 if any([y > 0 for y in Y]):
136 plt.plot(X, Y, 'g-')
137 minY = min(minY, min(Y))
138 maxY = max(maxY, max(Y))
140 Y = [s.totalWrittenBytes for s in self.snapshots]
141 if any([y > 0 for y in Y]):
142 plt.plot(X, Y, 'r-')
143 minY = min(minY, min(Y))
144 maxY = max(maxY, max(Y))