Exemplo n.º 1
0
 def test_yvalue_constructor(self):
     ys = np.linspace(0, 1, 11)
     Chart(ys)
Exemplo n.º 2
0
 def setUp(self):
     self.xs = range(11)
     self.ys = np.linspace(0, 1, 11)
     self.chart = Chart(zip(self.xs, self.ys))
     self.curve = Curve(zip(self.xs, self.ys))