@@ -168,23 +168,25 @@ def __init__(self, left=None, bottom=None, right=None, top=None,
168168
169169 The following attributes are available
170170
171- * left* : 0.125
171+ left : 0.125
172172 The left side of the subplots of the figure
173173
174- * right* : 0.9
174+ right : 0.9
175175 The right side of the subplots of the figure
176176
177- * bottom* : 0.1
177+ bottom : 0.1
178178 The bottom of the subplots of the figure
179179
180- * top* : 0.9
180+ top : 0.9
181181 The top of the subplots of the figure
182182
183- *wspace* : 0.2
184- The amount of width reserved for blank space between subplots
183+ wspace : 0.2
184+ The amount of width reserved for blank space between subplots,
185+ expressed as a fraction of the average axis width
185186
186- *hspace* : 0.2
187- The amount of height reserved for white space between subplots
187+ hspace : 0.2
188+ The amount of height reserved for white space between subplots,
189+ expressed as a fraction of the average axis height
188190 """
189191
190192 self .validate = True
@@ -510,16 +512,16 @@ def suptitle(self, t, **kwargs):
510512 kwargs are :class:`matplotlib.text.Text` properties. Using figure
511513 coordinates, the defaults are:
512514
513- *x* : 0.5
515+ x : 0.5
514516 The x location of the text in figure coords
515517
516- *y* : 0.98
518+ y : 0.98
517519 The y location of the text in figure coords
518520
519- * horizontalalignment* : 'center'
521+ horizontalalignment : 'center'
520522 The horizontal alignment of the text
521523
522- * verticalalignment* : 'top'
524+ verticalalignment : 'top'
523525 The vertical alignment of the text
524526
525527 If the `fontproperties` keyword argument is given then the
@@ -1189,67 +1191,67 @@ def legend(self, handles, labels, *args, **kwargs):
11891191
11901192 Keyword arguments:
11911193
1192- * prop* : [ *None* | FontProperties | dict ]
1194+ prop: [ *None* | FontProperties | dict ]
11931195 A :class:`matplotlib.font_manager.FontProperties`
11941196 instance. If *prop* is a dictionary, a new instance will be
11951197 created with *prop*. If *None*, use rc settings.
11961198
1197- * numpoints* : integer
1199+ numpoints: integer
11981200 The number of points in the legend line, default is 4
11991201
1200- * scatterpoints* : integer
1202+ scatterpoints: integer
12011203 The number of points in the legend line, default is 4
12021204
1203- * scatteryoffsets* : list of floats
1205+ scatteryoffsets: list of floats
12041206 a list of yoffsets for scatter symbols in legend
12051207
1206- * markerscale* : [ *None* | scalar ]
1208+ markerscale: [ *None* | scalar ]
12071209 The relative size of legend markers vs. original. If *None*, use rc
12081210 settings.
12091211
1210- * markerfirst* : [ *True* | *False* ]
1212+ markerfirst: [ *True* | *False* ]
12111213 if *True*, legend marker is placed to the left of the legend label
12121214 if *False*, legend marker is placed to the right of the legend
12131215 label
12141216
1215- * frameon* : [ *None* | bool ]
1217+ frameon: [ *None* | bool ]
12161218 Control whether the legend should be drawn on a patch (frame).
12171219 Default is *None* which will take the value from the
12181220 ``legend.frameon`` :data:`rcParam<matplotlib.rcParams>`.
12191221
1220- * fancybox* : [ *None* | *False* | *True* ]
1222+ fancybox: [ *None* | *False* | *True* ]
12211223 if *True*, draw a frame with a round fancybox. If *None*, use rc
12221224
1223- * shadow* : [ *None* | *False* | *True* ]
1225+ shadow: [ *None* | *False* | *True* ]
12241226 If *True*, draw a shadow behind legend. If *None*, use rc settings.
12251227
1226- * framealpha* : [ *None* | float ]
1228+ framealpha: [ *None* | float ]
12271229 Control the alpha transparency of the legend's background.
12281230 Default is *None* which will take the value from the
12291231 ``legend.framealpha`` :data:`rcParam<matplotlib.rcParams>`.
12301232
1231- * facecolor* : [ *None* | "inherit" | a color spec ]
1233+ facecolor: [ *None* | "inherit" | a color spec ]
12321234 Control the legend's background color.
12331235 Default is *None* which will take the value from the
12341236 ``legend.facecolor`` :data:`rcParam<matplotlib.rcParams>`.
12351237 If ``"inherit"``, it will take the ``axes.facecolor``
12361238 :data:`rcParam<matplotlib.rcParams>`.
12371239
1238- * edgecolor* : [ *None* | "inherit" | a color spec ]
1240+ edgecolor: [ *None* | "inherit" | a color spec ]
12391241 Control the legend's background patch edge color.
12401242 Default is *None* which will take the value from the
12411243 ``legend.edgecolor`` :data:`rcParam<matplotlib.rcParams>`.
12421244 If ``"inherit"``, it will take the ``axes.edgecolor``
12431245 :data:`rcParam<matplotlib.rcParams>`.
12441246
1245- * ncol* : integer
1247+ ncol : integer
12461248 number of columns. default is 1
12471249
1248- * mode* : [ "expand" | *None* ]
1250+ mode : [ "expand" | *None* ]
12491251 if mode is "expand", the legend will be horizontally expanded
12501252 to fill the axes area (or *bbox_to_anchor*)
12511253
1252- * title* : string
1254+ title : string
12531255 the legend title
12541256
12551257 Padding and spacing between various elements use following keywords
@@ -1713,13 +1715,13 @@ def tight_layout(self, renderer=None, pad=1.08, h_pad=None,
17131715
17141716 Parameters:
17151717
1716- * pad* : float
1718+ pad : float
17171719 padding between the figure edge and the edges of subplots,
17181720 as a fraction of the font-size.
1719- * h_pad*, * w_pad* : float
1721+ h_pad, w_pad : float
17201722 padding (height/width) between edges of adjacent subplots.
17211723 Defaults to `pad_inches`.
1722- * rect* : if rect is given, it is interpreted as a rectangle
1724+ rect : if rect is given, it is interpreted as a rectangle
17231725 (left, bottom, right, top) in the normalized figure
17241726 coordinate that the whole subplots area (including
17251727 labels) will fit into. Default is (0, 0, 1, 1).
0 commit comments