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

Skip to content

Commit e4c89b9

Browse files
committed
DOC: Fix Malformed table. Text in column margin
1 parent 123450e commit e4c89b9

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

lib/mpl_toolkits/mplot3d/axes3d.py

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2181,31 +2181,31 @@ def scatter(self, xs, ys, zs=0, zdir='z', s=20, c='b', depthshade=True,
21812181
'''
21822182
Create a scatter plot.
21832183
2184-
========== ==========================================================
2185-
Argument Description
2186-
========== ==========================================================
2187-
*xs*, *ys* Positions of data points.
2188-
*zs* Either an array of the same length as *xs* and
2189-
*ys* or a single value to place all points in
2190-
the same plane. Default is 0.
2191-
*zdir* Which direction to use as z ('x', 'y' or 'z')
2192-
when plotting a 2D set.
2193-
*s* size in points^2. It is a scalar or an array of the same
2194-
length as *x* and *y*.
2195-
2196-
*c* a color. *c* can be a single color format string, or a
2197-
sequence of color specifications of length *N*, or a
2198-
sequence of *N* numbers to be mapped to colors using the
2199-
*cmap* and *norm* specified via kwargs (see below). Note
2200-
that *c* should not be a single numeric RGB or RGBA
2201-
sequence because that is indistinguishable from an array
2202-
of values to be colormapped. *c* can be a 2-D array in
2203-
which the rows are RGB or RGBA, however.
2184+
============ ========================================================
2185+
Argument Description
2186+
============ ========================================================
2187+
*xs*, *ys* Positions of data points.
2188+
*zs* Either an array of the same length as *xs* and
2189+
*ys* or a single value to place all points in
2190+
the same plane. Default is 0.
2191+
*zdir* Which direction to use as z ('x', 'y' or 'z')
2192+
when plotting a 2D set.
2193+
*s* size in points^2. It is a scalar or an array of the
2194+
same length as *x* and *y*.
2195+
2196+
*c* a color. *c* can be a single color format string, or a
2197+
sequence of color specifications of length *N*, or a
2198+
sequence of *N* numbers to be mapped to colors using the
2199+
*cmap* and *norm* specified via kwargs (see below). Note
2200+
that *c* should not be a single numeric RGB or RGBA
2201+
sequence because that is indistinguishable from an array
2202+
of values to be colormapped. *c* can be a 2-D array in
2203+
which the rows are RGB or RGBA, however.
22042204
22052205
*depthshade*
2206-
Whether or not to shade the scatter markers to give the
2207-
appearance of depth. Default is *True*.
2208-
========== ==========================================================
2206+
Whether or not to shade the scatter markers to give
2207+
the appearance of depth. Default is *True*.
2208+
============ ========================================================
22092209
22102210
Keyword arguments are passed on to
22112211
:func:`~matplotlib.axes.Axes.scatter`.

0 commit comments

Comments
 (0)