Exemple #1
0
 def test_empty_annotator_then_new_plot_ok(self):
     annot = Annotator.get_empty_annotator()
     self.ax = sns.boxplot(ax=self.ax, data=self.data2)
     annot.new_plot(self.ax, pairs=[("X", "Y")],
                    data=self.data2)
     annot.configure(test="Mann-Whitney")
Exemple #2
0
 def test_empty_annotator_wo_new_plot_raises(self):
     annot = Annotator.get_empty_annotator()
     with self.assertRaises(RuntimeError):
         annot.configure(test="Mann-Whitney")