File tree Expand file tree Collapse file tree 3 files changed +284
-30
lines changed Expand file tree Collapse file tree 3 files changed +284
-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
+ cla
111
+ delaxes
112
+ gca
113
+ grid
114
+ sca
115
+ subplot
116
+ subplots
117
+ subplot2grid
118
+ subplot_tool
119
+ subplots_adjust
120
+ tight_layout
121
+ twinx
122
+ twiny
123
+
124
+ Working with axis
125
+ =================
126
+
127
+ .. autosummary ::
128
+ :toctree: _as_gen
129
+ :template: autosummary.rst
130
+ :nosignatures:
131
+
132
+ autoscale
133
+ axis
134
+ locator_params
135
+ margins
136
+ minorticks_off
137
+ minorticks_on
138
+ rgrids
139
+ thetagrids
140
+ tick_params
141
+ ticklabel_format
142
+ xlabel
143
+ ylabel
144
+ xlim
145
+ ylim
146
+ xscale
147
+ yscale
148
+ xticks
149
+ yticks
150
+
151
+
152
+ Current image
153
+ =============
154
+
155
+ .. autosummary ::
156
+ :toctree: _as_gen
157
+ :template: autosummary.rst
158
+ :nosignatures:
159
+
160
+ clabel
161
+ clim
162
+ colorbar
163
+ gci
164
+ sci
165
+ set_cmap
166
+
167
+ Putting things in axes
168
+ ======================
169
+
170
+ .. autosummary ::
171
+ :toctree: _as_gen
172
+ :template: autosummary.rst
173
+ :nosignatures:
174
+
175
+ annotate
176
+ arrow
177
+ legend
178
+ table
179
+ text
180
+ title
181
+
182
+ Working with images
183
+ ===================
184
+
185
+ .. autosummary ::
186
+ :toctree: _as_gen
187
+ :template: autosummary.rst
188
+ :nosignatures:
189
+
190
+ imread
191
+ imsave
192
+
193
+ Plotting functions
194
+ ==================
195
+
196
+ .. autosummary ::
197
+ :toctree: _as_gen
198
+ :template: autosummary.rst
199
+ :nosignatures:
200
+
201
+ acorr
202
+ angle_spectrum
203
+ axhline
204
+ axhspan
205
+ axvline
206
+ axvspan
207
+ bar
208
+ barbs
209
+ barh
210
+ boxplot
211
+ broken_barh
212
+ cohere
213
+ contour
214
+ contourf
215
+ csd
216
+ errorbar
217
+ eventplot
218
+ fill
219
+ fill_between
220
+ fill_betweenx
221
+ hexbin
222
+ hist
223
+ hist2d
224
+ hlines
225
+ imshow
226
+ loglog
227
+ magnitude_spectrum
228
+ matshow
229
+ pcolor
230
+ pcolormesh
231
+ phase_spectrum
232
+ pie
233
+ plot
234
+ plot_date
235
+ plotfile
236
+ polar
237
+ psd
238
+ quiver
239
+ quiverkey
240
+ scatter
241
+ semilogx
242
+ semilogy
243
+ specgram
244
+ spy
245
+ stackplot
246
+ stem
247
+ step
248
+ streamplot
249
+ tricontour
250
+ tricontourf
251
+ tripcolor
252
+ triplot
253
+ violinplot
254
+ vlines
255
+ xcorr
256
+
257
+ Colormaps
258
+ =========
259
+
260
+ .. autosummary ::
261
+ :toctree: _as_gen
262
+ :template: autosummary.rst
263
+ :nosignatures:
264
+
265
+ autumn
266
+ bone
267
+ cool
268
+ copper
269
+ flag
270
+ gray
271
+ hot
272
+ hsv
273
+ inferno
274
+ jet
275
+ magma
276
+ nipy_spectral
277
+ pink
278
+ plasma
279
+ prism
280
+ spring
281
+ summer
282
+ viridis
283
+ winter
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments