def test_plot_scatter_data_empty(self):
     """_plot_scatter_data() should not error when given empty list of data,
     but should not plot anything."""
     fig, ax = plt.subplots()
     result = _plot_scatter_data(ax, [], '^', 0.77, 1, 1.5, 'stdv')
     self.assertTrue(result is None)
Example #2
0
 def test_plot_scatter_data_empty(self):
     """_plot_scatter_data() should not error when given empty list of data,
     but should not plot anything."""
     fig, ax = plt.subplots()
     result = _plot_scatter_data(ax, [], '^', 0.77, 1, 1.5, 'stdv')
     self.assertTrue(result is None)
 def test_plot_scatter_data(self):
     """_plot_scatter_data() should return a Collection instance."""
     fig, ax = plt.subplots()
     result = _plot_scatter_data(ax, [1, 2, 3], '^', 0.77, 1, 1.5, 'stdv')
     self.assertEqual(result.get_sizes(), 20)
Example #4
0
 def test_plot_scatter_data(self):
     """_plot_scatter_data() should return a Collection instance."""
     fig, ax = plt.subplots()
     result = _plot_scatter_data(ax, [1, 2, 3], '^', 0.77, 1, 1.5, 'stdv')
     self.assertEqual(result.get_sizes(), 20)