Ejemplo n.º 1
0
 def test_legend_switch(self):
     ax = parallel(self.df, legend=False)
     self.assertIsInstance(ax, matplotlib.axes.Axes)
Ejemplo n.º 2
0
 def test_colorby_column(self):
     ax = parallel(self.df, color_by="Depth")
     self.assertIsInstance(ax, matplotlib.axes.Axes)
Ejemplo n.º 3
0
 def test_colorby_list(self):
     ax = parallel(self.df, color_by=self.df.Depth.values.tolist())
     self.assertIsInstance(ax, matplotlib.axes.Axes)
Ejemplo n.º 4
0
 def test_default(self):
     ax = parallel(self.df)
     self.assertIsInstance(ax, matplotlib.axes.Axes)