File tree Expand file tree Collapse file tree 3 files changed +34
-1
lines changed
packages/python/plotly/plotly/express Expand file tree Collapse file tree 3 files changed +34
-1
lines changed Original file line number Diff line number Diff line change 1
1
.. _px :
2
2
3
3
`plotly.express `: high-level interface for data visualization
4
- ================================
4
+ =============================================================
5
5
6
6
The `plotly.express <https://plot.ly/python/plotly-express/ >`_ module is
7
7
plotly's high-level API for rapid figure generation. ::
@@ -49,4 +49,13 @@ plotly's high-level API for rapid figure generation. ::
49
49
imshow
50
50
51
51
52
+ `plotly.express ` submodules
53
+ ---------------------------
54
+
55
+
56
+ .. toctree ::
57
+ :maxdepth: 1
58
+
59
+ generated/plotly.data.rst
60
+ generated/plotly.express.colors.rst
52
61
Original file line number Diff line number Diff line change
1
+ """For a list of colors available in `plotly.express.colors`, please see
2
+
3
+ * the `tutorial on discrete color sequences <https://plotly.com/python/discrete-color/#color-sequences-in-plotly-express>`_
4
+ * the `list of built-in continuous color scales <https://plotly.com/python/builtin-colorscales/>`_
5
+ """
6
+
7
+ from __future__ import absolute_import
8
+ from plotly .colors import *
9
+
10
+ __all__ = ['cyclical' ,
11
+ 'diverging' ,
12
+ 'sequential' ,
13
+ 'qualitative' ,
14
+ ]
Original file line number Diff line number Diff line change 1
1
from __future__ import absolute_import
2
2
from plotly .data import *
3
+
4
+ __all__ = [
5
+ 'carshare' ,
6
+ 'election' ,
7
+ 'election_geojson' ,
8
+ 'gapminder' ,
9
+ 'iris' ,
10
+ 'tips' ,
11
+ 'wind'
12
+ ]
You can’t perform that action at this time.
0 commit comments