Exemple #1
0
 def testPlotRowAndColumn(self):
     self.view = flow.TableView(statistic=("ByDoxWell", "geom_mean"),
                                row_facet='Dox',
                                column_facet='Well')
     self.view.plot(self.ex)
Exemple #2
0
 def testPlotColumn(self):
     self.view = flow.TableView(statistic=("ByDox", "geom_mean"),
                                column_facet="Dox")
     self.view.plot(self.ex)
Exemple #3
0
 def testPlotSubrow(self):
     self.view = flow.TableView(statistic=("ByDoxWell", "geom_mean"),
                                row_facet='Dox',
                                subrow_facet='Well')
     self.view.plot(self.ex)
Exemple #4
0
 def testPlotRowSubset(self):
     self.view = flow.TableView(statistic=("ByDox", "geom_mean"),
                                row_facet="Dox",
                                subset="Dox > 1")
     self.view.plot(self.ex)
Exemple #5
0
 def testPlotSubcolumnRange(self):
     self.view = flow.TableView(statistic=("ByDoxWell", "geom_sd_range"),
                                column_facet='Dox',
                                subcolumn_facet='Well')
     self.view.plot(self.ex)
Exemple #6
0
 def testPlotRowRange(self):
     self.view = flow.TableView(statistic=("ByDox", "geom_sd_range"),
                                row_facet="Dox")
     self.view.plot(self.ex)