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
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
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
def test_plot_96wells_blanc( self ): fig, ax = rp.plot_96wells() return fig