コード例 #1
0
ファイル: test_table.py プロジェクト: ritika-giri/cytoflow
 def testPlotRowAndColumn(self):
     self.view = flow.TableView(statistic=("ByDoxWell", "geom_mean"),
                                row_facet='Dox',
                                column_facet='Well')
     self.view.plot(self.ex)
コード例 #2
0
ファイル: test_table.py プロジェクト: ritika-giri/cytoflow
 def testPlotColumn(self):
     self.view = flow.TableView(statistic=("ByDox", "geom_mean"),
                                column_facet="Dox")
     self.view.plot(self.ex)
コード例 #3
0
ファイル: test_table.py プロジェクト: ritika-giri/cytoflow
 def testPlotSubrow(self):
     self.view = flow.TableView(statistic=("ByDoxWell", "geom_mean"),
                                row_facet='Dox',
                                subrow_facet='Well')
     self.view.plot(self.ex)
コード例 #4
0
ファイル: test_table.py プロジェクト: ritika-giri/cytoflow
 def testPlotRowSubset(self):
     self.view = flow.TableView(statistic=("ByDox", "geom_mean"),
                                row_facet="Dox",
                                subset="Dox > 1")
     self.view.plot(self.ex)
コード例 #5
0
ファイル: test_table.py プロジェクト: ritika-giri/cytoflow
 def testPlotSubcolumnRange(self):
     self.view = flow.TableView(statistic=("ByDoxWell", "geom_sd_range"),
                                column_facet='Dox',
                                subcolumn_facet='Well')
     self.view.plot(self.ex)
コード例 #6
0
ファイル: test_table.py プロジェクト: ritika-giri/cytoflow
 def testPlotRowRange(self):
     self.view = flow.TableView(statistic=("ByDox", "geom_sd_range"),
                                row_facet="Dox")
     self.view.plot(self.ex)