Skip to content

Commit c600541

Browse files
committed
added subplots + a few sentences
1 parent 0782638 commit c600541

File tree

4 files changed

+31
-4
lines changed

4 files changed

+31
-4
lines changed

apidoc/graph_objects.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ Graph objects: figures, traces and layout
33

44
.. currentmodule:: plotly.graph_objects
55

6+
:mod:`plotly.graph_objects` contains the building blocks of plotly :class:`Figure`: traces
7+
(:class:`Scatter`, :class:`Bar`, ...) and :class:`Layout`
8+
::
9+
10+
>>> import plotly.graph_objects as go
11+
12+
613
Classes
714

815
.. autosummary::

apidoc/index.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,18 @@
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.
55
6-
Welcome to plotly's documentation!
7-
==================================
6+
plotly API reference
7+
====================
8+
9+
This is the reference of plotly's API. Also see `plotly's documentation website <https://plot.ly/python>`_.
810

911
.. toctree::
1012
:maxdepth: 2
1113
:caption: Contents:
1214

1315
px.rst
1416
graph_objects.rst
17+
subplots.rst
1518
figure_factory.rst
1619
io.rst
1720
colors.rst

apidoc/px.rst

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
Plotly express
2-
==============
1+
Plotly express: `plotly.express`
2+
================================
3+
4+
The `plotly.express <https://plot.ly/python/plotly-express/>`_ module is
5+
plotly's high-level API for rapid figure generation. ::
6+
7+
>>> import plotly.express as px
38

49
.. currentmodule:: plotly.express
510

apidoc/subplots.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Subplots: `plotly.subplots`
2+
===========================
3+
4+
.. currentmodule:: plotly.subplots
5+
6+
.. autosummary::
7+
8+
make_subplots
9+
10+
11+
.. autofunction:: plotly.subplots.make_subplots
12+

0 commit comments

Comments
 (0)