Skip to content

Commit a906f58

Browse files
committed
Remove hard-coded docstring on plotting()
1 parent 1057eed commit a906f58

File tree

1 file changed

+0
-84
lines changed

1 file changed

+0
-84
lines changed

lib/matplotlib/pyplot.py

-84
Original file line numberDiff line numberDiff line change
@@ -1518,90 +1518,6 @@ def thetagrids(*args, **kwargs):
15181518
## Plotting Info ##
15191519

15201520
def plotting():
1521-
"""
1522-
Plotting commands
1523-
1524-
=============== =========================================================
1525-
Command Description
1526-
=============== =========================================================
1527-
axes Create a new axes
1528-
axis Set or return the current axis limits
1529-
bar make a bar chart
1530-
boxplot make a box and whiskers chart
1531-
cla clear current axes
1532-
clabel label a contour plot
1533-
clf clear a figure window
1534-
close close a figure window
1535-
colorbar add a colorbar to the current figure
1536-
cohere make a plot of coherence
1537-
contour make a contour plot
1538-
contourf make a filled contour plot
1539-
csd make a plot of cross spectral density
1540-
draw force a redraw of the current figure
1541-
errorbar make an errorbar graph
1542-
figlegend add a legend to the figure
1543-
figimage add an image to the figure, w/o resampling
1544-
figtext add text in figure coords
1545-
figure create or change active figure
1546-
fill make filled polygons
1547-
fill_between make filled polygons between two sets of y-values
1548-
fill_betweenx make filled polygons between two sets of x-values
1549-
gca return the current axes
1550-
gcf return the current figure
1551-
gci get the current image, or None
1552-
getp get a graphics property
1553-
hist make a histogram
1554-
hold set the hold state on current axes
1555-
legend add a legend to the axes
1556-
loglog a log log plot
1557-
imread load image file into array
1558-
imsave save array as an image file
1559-
imshow plot image data
1560-
matshow display a matrix in a new figure preserving aspect
1561-
pcolor make a pseudocolor plot
1562-
plot make a line plot
1563-
plotfile plot data from a flat file
1564-
psd make a plot of power spectral density
1565-
quiver make a direction field (arrows) plot
1566-
rc control the default params
1567-
savefig save the current figure
1568-
scatter make a scatter plot
1569-
setp set a graphics property
1570-
semilogx log x axis
1571-
semilogy log y axis
1572-
show in non-interactive mode, display all figures and block
1573-
until they have been closed; in interactive mode,
1574-
show generally has no effect.
1575-
specgram a spectrogram plot
1576-
stem make a stem plot
1577-
subplot make a subplot (numrows, numcols, axesnum)
1578-
table add a table to the axes
1579-
text add some text at location x,y to the current axes
1580-
title add a title to the current axes
1581-
xlabel add an xlabel to the current axes
1582-
ylabel add a ylabel to the current axes
1583-
=============== =========================================================
1584-
1585-
The following commands will set the default colormap accordingly:
1586-
1587-
* autumn
1588-
* bone
1589-
* cool
1590-
* copper
1591-
* flag
1592-
* gray
1593-
* hot
1594-
* hsv
1595-
* jet
1596-
* pink
1597-
* prism
1598-
* spring
1599-
* summer
1600-
* winter
1601-
* spectral
1602-
1603-
"""
1604-
# TODO: Generate this automatically
16051521
pass
16061522

16071523

0 commit comments

Comments
 (0)