Ejemplo n.º 1
0
 def test_histo_2d_contour(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).histogram_2d_contour(), go.Histogram2dContour))
Ejemplo n.º 2
0
 def test_line(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).line(), go.Scatter))
Ejemplo n.º 3
0
 def test_heat_map(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).heat_map(), go.Heatmap))
Ejemplo n.º 4
0
 def test_histo(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).histo(), go.Histogram))
Ejemplo n.º 5
0
 def test_scatter_geo(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).scatter_geo(), go.Scattergeo))
Ejemplo n.º 6
0
 def test_treemap(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).treemap(), go.Treemap))
Ejemplo n.º 7
0
 def test_contour(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).contour(), go.Contour))
Ejemplo n.º 8
0
 def test_pie(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).pie(), go.Pie))
Ejemplo n.º 9
0
 def test_candlestick(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).candlestick(), go.Candlestick))
Ejemplo n.º 10
0
 def test_choroplethmapbox(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).choroplethmapbox(), go.Choroplethmapbox))
Ejemplo n.º 11
0
 def test_box_whisker(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).box_whisker(), go.Box))
Ejemplo n.º 12
0
 def test_bar(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).bar(), go.Bar))
Ejemplo n.º 13
0
 def test_violin(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).violin(), go.Violin))
Ejemplo n.º 14
0
 def test_parallel_category(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).parallel_category(), go.Parcats))
Ejemplo n.º 15
0
 def test_mesh_3d(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).mesh_3d(), go.Mesh3d))
Ejemplo n.º 16
0
 def test_parallel_coordinates(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).parallel_coordinates(), go.Parcoords))
Ejemplo n.º 17
0
 def test_densitymapbox(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).densitymapbox(), go.Densitymapbox))
Ejemplo n.º 18
0
 def test_ridgeline(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).ridgeline(), go.Violin))
Ejemplo n.º 19
0
 def test_funnel_area(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).funnel_area(), go.Funnelarea))
Ejemplo n.º 20
0
 def test_scatter_mapbox(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).scatter_mapbox(), go.Scattermapbox))
Ejemplo n.º 21
0
 def test_table(self):
     self.assertTrue(expr=isinstance(PlotlyAdapter(plot=PLOT).table(), go.Table))