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