Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 97cfe9d

Browse files
committed
DOC [ci doc]
1 parent de89e7c commit 97cfe9d

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

doc/api/figure_api.rst

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,16 @@
88
:no-members:
99
:no-undoc-members:
1010

11-
.. seealso::
12-
13-
- :ref:`figures_and_backends`
14-
- :ref:`arranging_axes`
15-
11+
The Figure class
12+
================
1613
.. autosummary::
1714
:toctree: _as_gen
18-
:template: autosummary.rst
15+
:template: autosummary_class_only.rst
1916
:nosignatures:
2017

2118
Figure
2219

20+
2321
Adding Axes and SubFigures
2422
==========================
2523

@@ -223,9 +221,12 @@ a parent `~.Figure`, which has many of the same methods as the parent. See
223221
# suptitle for the main figure:
224222
fig.suptitle('Figure')
225223

224+
SubFigure class
225+
---------------
226+
226227
.. autosummary::
227228
:toctree: _as_gen
228-
:template: autosummary.rst
229+
:template: autosummary_class_only.rst
229230
:nosignatures:
230231

231232
SubFigure
@@ -300,7 +301,7 @@ Helper classes
300301

301302
.. autosummary::
302303
:toctree: _as_gen
303-
:template: autosummary.rst
304+
:template: autosummary_class_only.rst
304305
:nosignatures:
305306

306307
FigureBase

galleries/examples/animation/unchained.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
====================
3-
Matplotlib Unchained
4-
====================
2+
========================
3+
MATPLOTLIB **UNCHAINED**
4+
========================
55
66
Comparative path demonstration of frequency from a fake signal of a pulsar
77
(mostly known because of the cover for Joy Division's Unknown Pleasures).
@@ -72,5 +72,5 @@ def update(*args):
7272
return lines
7373

7474
# Construct the animation, using the update function as the animation director.
75-
anim = animation.FuncAnimation(fig, update, interval=10, save_count=50)
75+
anim = animation.FuncAnimation(fig, update, interval=10, save_count=100)
7676
plt.show()

0 commit comments

Comments
 (0)