Ejemplo n.º 1
0
 def test_plot_96wells_all( self ):
     np.random.seed(0)
     df = pd.DataFrame(np.random.randn(8, 12))
     fig, ax = rp.plot_96wells(cdata=df, sdata=-df, bdata=df < 0)
     return fig
Ejemplo n.º 2
0
 def test_plot_96wells_color( self ):
     np.random.seed(0)
     df = pd.DataFrame(np.random.randn(8, 12))
     fig, ax = rp.plot_96wells(cdata=df)
     return fig
Ejemplo n.º 3
0
 def test_plot_96wells_size( self ):
     np.random.seed(0)
     df = pd.DataFrame(np.random.randn(8, 12))
     fig, ax = rp.plot_96wells(sdata=-df)
     return fig
Ejemplo n.º 4
0
 def test_plot_96wells_blanc( self ):
     fig, ax = rp.plot_96wells()
     return fig