File tree Expand file tree Collapse file tree 3 files changed +265
-30
lines changed Expand file tree Collapse file tree 3 files changed +265
-30
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Modules
17
17
:maxdepth: 1
18
18
19
19
matplotlib_configuration_api.rst
20
- pyplot_summary .rst
20
+ pyplot_api .rst
21
21
afm_api.rst
22
22
animation_api.rst
23
23
artist_api.rst
Original file line number Diff line number Diff line change
1
+ ******
2
+ pyplot
3
+ ******
4
+
5
+ .. currentmodule :: matplotlib.pyplot
6
+
7
+ .. automodule :: matplotlib.pyplot
8
+ :no-members:
9
+
10
+ Information
11
+ ===========
12
+
13
+ .. autosummary ::
14
+ :toctree: _as_gen
15
+ :template: autosummary.rst
16
+ :nosignatures:
17
+
18
+ colormaps
19
+ get_plot_commands
20
+
21
+ Global functions
22
+ ================
23
+
24
+ .. autosummary ::
25
+ :toctree: _as_gen
26
+ :template: autosummary.rst
27
+ :nosignatures:
28
+
29
+ findobj
30
+ install_repl_displayhook
31
+ ioff
32
+ ion
33
+ isinteractive
34
+ pause
35
+ rc
36
+ rc_context
37
+ rcdefaults
38
+ show
39
+ switch_backend
40
+ uninstall_repl_displayhook
41
+
42
+ Any artist
43
+ ==========
44
+
45
+ .. autosummary ::
46
+ :toctree: _as_gen
47
+ :template: autosummary.rst
48
+ :nosignatures:
49
+
50
+ getp
51
+ setp
52
+ xkcd
53
+
54
+ Making figures
55
+ ==============
56
+ .. autosummary ::
57
+ :toctree: _as_gen
58
+ :template: autosummary.rst
59
+ :nosignatures:
60
+
61
+ figure
62
+ subplots
63
+
64
+ Working with figures
65
+ ====================
66
+
67
+ .. autosummary ::
68
+ :toctree: _as_gen
69
+ :template: autosummary.rst
70
+ :nosignatures:
71
+
72
+ clf
73
+ close
74
+ connect
75
+ disconnect
76
+ draw
77
+ fignum_exists
78
+ figure
79
+ gcf
80
+ get_current_fig_manager
81
+ get_figlabels
82
+ get_fignums
83
+ ginput
84
+ savefig
85
+ waitforbuttonpress
86
+
87
+ Putting things in figures
88
+ =========================
89
+
90
+ .. autosummary ::
91
+ :toctree: _as_gen
92
+ :template: autosummary.rst
93
+ :nosignatures:
94
+
95
+ figimage
96
+ figlegend
97
+ figtext
98
+ suptitle
99
+
100
+ Working with axes
101
+ =================
102
+
103
+ .. autosummary ::
104
+ :toctree: _as_gen
105
+ :template: autosummary.rst
106
+ :nosignatures:
107
+
108
+ axes
109
+ box
110
+ delaxes
111
+ gca
112
+ sca
113
+ subplot
114
+ subplots
115
+ subplot2grid
116
+ subplot_tool
117
+ subplots_adjust
118
+ tight_layout
119
+ twinx
120
+ twiny
121
+
122
+ Working with axis
123
+ =================
124
+
125
+ .. autosummary ::
126
+ :toctree: _as_gen
127
+ :template: autosummary.rst
128
+ :nosignatures:
129
+
130
+ rgrids
131
+ thetagrids
132
+ xlim
133
+ ylim
134
+ xticks
135
+ yticks
136
+
137
+ Current image
138
+ =============
139
+
140
+ .. autosummary ::
141
+ :toctree: _as_gen
142
+ :template: autosummary.rst
143
+ :nosignatures:
144
+
145
+ gci
146
+
147
+ Plotting functions
148
+ ==================
149
+
150
+ .. autosummary ::
151
+ :toctree: _as_gen
152
+ :template: autosummary.rst
153
+ :nosignatures:
154
+
155
+ acorr
156
+ angle_spectrum
157
+ annotate
158
+ arrow
159
+ autoscale
160
+ axhline
161
+ axhspan
162
+ axis
163
+ axvline
164
+ axvspan
165
+ bar
166
+ barbs
167
+ barh
168
+ boxplot
169
+ broken_barh
170
+ cla
171
+ clabel
172
+ clim
173
+ cohere
174
+ colorbar
175
+ contour
176
+ contourf
177
+ csd
178
+ errorbar
179
+ eventplot
180
+ fill
181
+ fill_between
182
+ fill_betweenx
183
+ grid
184
+ hexbin
185
+ hist
186
+ hist2d
187
+ hlines
188
+ imread
189
+ imsave
190
+ imshow
191
+ legend
192
+ locator_params
193
+ loglog
194
+ magnitude_spectrum
195
+ margins
196
+ matshow
197
+ minorticks_off
198
+ minorticks_on
199
+ pcolor
200
+ pcolormesh
201
+ phase_spectrum
202
+ pie
203
+ plot
204
+ plot_date
205
+ plotfile
206
+ polar
207
+ psd
208
+ quiver
209
+ quiverkey
210
+ scatter
211
+ sci
212
+ semilogx
213
+ semilogy
214
+ set_cmap
215
+ specgram
216
+ spy
217
+ stackplot
218
+ stem
219
+ step
220
+ streamplot
221
+ table
222
+ text
223
+ tick_params
224
+ ticklabel_format
225
+ title
226
+ tricontour
227
+ tricontourf
228
+ tripcolor
229
+ triplot
230
+ violinplot
231
+ vlines
232
+ xcorr
233
+ xlabel
234
+ xscale
235
+ ylabel
236
+ yscale
237
+
238
+ Colormaps
239
+ =========
240
+
241
+ .. autosummary ::
242
+ :toctree: _as_gen
243
+ :template: autosummary.rst
244
+ :nosignatures:
245
+
246
+ autumn
247
+ bone
248
+ cool
249
+ copper
250
+ flag
251
+ gray
252
+ hot
253
+ hsv
254
+ inferno
255
+ jet
256
+ magma
257
+ nipy_spectral
258
+ pink
259
+ plasma
260
+ prism
261
+ spring
262
+ summer
263
+ viridis
264
+ winter
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments