1111 )
1212
1313
14- from plotly .figure_factory ._2d_density import create_2d_density
15- from plotly .figure_factory ._annotated_heatmap import create_annotated_heatmap
16- from plotly .figure_factory ._bullet import create_bullet
17- from plotly .figure_factory ._candlestick import create_candlestick
1814from plotly .figure_factory ._dendrogram import create_dendrogram
19- from plotly .figure_factory ._distplot import create_distplot
20- from plotly .figure_factory ._facet_grid import create_facet_grid
21- from plotly .figure_factory ._gantt import create_gantt
22- from plotly .figure_factory ._ohlc import create_ohlc
2315from plotly .figure_factory ._quiver import create_quiver
24- from plotly .figure_factory ._scatterplot import create_scatterplotmatrix
2516from plotly .figure_factory ._streamline import create_streamline
2617from plotly .figure_factory ._table import create_table
2718from plotly .figure_factory ._trisurf import create_trisurf
28- from plotly .figure_factory ._violin import create_violin
2919
3020if optional_imports .get_module ("pandas" ) is not None :
31- from plotly .figure_factory ._county_choropleth import create_choropleth
32- from plotly .figure_factory ._hexbin_map import (
33- create_hexbin_map ,
34- create_hexbin_mapbox ,
35- )
21+ from plotly .figure_factory ._hexbin_map import create_hexbin_map
3622else :
3723
38- def create_choropleth (* args , ** kwargs ):
39- raise ImportError ("Please install pandas to use `create_choropleth`" )
40-
4124 def create_hexbin_map (* args , ** kwargs ):
4225 raise ImportError ("Please install pandas to use `create_hexbin_map`" )
4326
44- def create_hexbin_mapbox (* args , ** kwargs ):
45- raise ImportError ("Please install pandas to use `create_hexbin_mapbox`" )
46-
4727
4828if optional_imports .get_module ("skimage" ) is not None :
4929 from plotly .figure_factory ._ternary_contour import create_ternary_contour
@@ -54,23 +34,11 @@ def create_ternary_contour(*args, **kwargs):
5434
5535
5636__all__ = [
57- "create_2d_density" ,
58- "create_annotated_heatmap" ,
59- "create_bullet" ,
60- "create_candlestick" ,
61- "create_choropleth" ,
6237 "create_dendrogram" ,
63- "create_distplot" ,
64- "create_facet_grid" ,
65- "create_gantt" ,
6638 "create_hexbin_map" ,
67- "create_hexbin_mapbox" ,
68- "create_ohlc" ,
6939 "create_quiver" ,
70- "create_scatterplotmatrix" ,
7140 "create_streamline" ,
7241 "create_table" ,
7342 "create_ternary_contour" ,
7443 "create_trisurf" ,
75- "create_violin" ,
7644]
0 commit comments