@@ -4432,8 +4432,8 @@ def legend(self, *args, **kwargs):
44324432 instance. If *prop* is a dictionary, a new instance will be
44334433 created with *prop*. If *None*, use rc settings.
44344434
4435- *fontsize*: [ size in points | 'xx-small' | 'x-small' | 'small' |
4436- 'medium' | 'large' | 'x-large' | 'xx-large' ]
4435+ *fontsize*: [ size in points | 'xx-small' | 'x-small' |
4436+ 'small' | 'medium' | 'large' | 'x-large' | 'xx-large' ]
44374437 Set the font size. May be either a size string, relative to
44384438 the default font size, or an absolute font size in points. This
44394439 argument is only used if prop is not specified.
@@ -5602,17 +5602,17 @@ def boxplot(self, x, notch=False, sym='b+', vert=True, whis=1.5,
56025602
56035603 Returns a dictionary mapping each component of the boxplot
56045604 to a list of the :class:`matplotlib.lines.Line2D`
5605- instances created. That disctionary has the following keys
5605+ instances created. That dictionary has the following keys
56065606 (assuming vertical boxplots):
5607- boxes: the main body of the boxplot showing the quartiles
5608- and the median's confidence intervals if enabled.
5609- medians: horizonal lines at the median of each box.
5610- whiskers: the vertical lines extending to the most extreme,
5611- non-outlier data points.
5612- caps: the horizontal lines at the ends of the whiskers.
5613- fliers: points representing data that extend beyone the
5614- whiskers (outliers).
56155607
5608+ - boxes: the main body of the boxplot showing the quartiles
5609+ and the median's confidence intervals if enabled.
5610+ - medians: horizonal lines at the median of each box.
5611+ - whiskers: the vertical lines extending to the most extreme,
5612+ n-outlier data points.
5613+ - caps: the horizontal lines at the ends of the whiskers.
5614+ - fliers: points representing data that extend beyone the
5615+ whiskers (outliers).
56165616
56175617 **Example:**
56185618
@@ -7828,6 +7828,8 @@ def hist(self, x, bins=10, range=None, normed=False, weights=None,
78287828 ax.hist(12+3*np.random.randn(1000), label='women', alpha=0.5)
78297829 ax.legend()
78307830
7831+ .
7832+
78317833 kwargs are used to update the properties of the
78327834 :class:`~matplotlib.patches.Patch` instances returned by *hist*:
78337835
@@ -8121,23 +8123,35 @@ def hist2d(self, x, y, bins = 10, range=None, normed=False, weights=None,
81218123 hist2d(x, y, bins = None, range=None, weights=None, cmin=None, cmax=None **kwargs)
81228124
81238125 Make a 2d histogram plot of *x* versus *y*, where *x*,
8124- *y* are 1-D sequences of the same length
8126+ *y* are 1-D sequences of the same length.
81258127
8126- The return value is (counts,xedges,yedges,Image)
8128+ The return value is `` (counts, xedges, yedges, Image)``.
81278129
81288130 Optional keyword arguments:
81298131 *bins*: [None | int | [int, int] | array_like | [array, array]]
8132+
81308133 The bin specification:
8131- If int, the number of bins for the two dimensions (nx=ny=bins).
8132- If [int, int], the number of bins in each dimension (nx, ny = bins).
8133- If array_like, the bin edges for the two dimensions (x_edges=y_edges=bins).
8134- If [array, array], the bin edges in each dimension (x_edges, y_edges = bins).
8134+
8135+ - If int, the number of bins for the two dimensions
8136+ (nx=ny=bins).
8137+
8138+ - If [int, int], the number of bins in each dimension
8139+ (nx, ny = bins).
8140+
8141+ - If array_like, the bin edges for the two dimensions
8142+ (x_edges=y_edges=bins).
8143+
8144+ - If [array, array], the bin edges in each dimension
8145+ (x_edges, y_edges = bins).
8146+
81358147 The default value is 10.
81368148
81378149 *range*: [*None* | array_like shape(2,2)]
8138- The leftmost and rightmost edges of the bins along each dimension (if not specified
8139- explicitly in the bins parameters): [[xmin, xmax], [ymin, ymax]]. All values outside of
8140- this range will be considered outliers and not tallied in the histogram.
8150+ The leftmost and rightmost edges of the bins along each
8151+ dimension (if not specified explicitly in the bins
8152+ parameters): [[xmin, xmax], [ymin, ymax]]. All values
8153+ outside of this range will be considered outliers and not
8154+ tallied in the histogram.
81418155
81428156 *normed*:[True|False]
81438157 Normalize histogram.
@@ -8147,12 +8161,15 @@ def hist2d(self, x, y, bins = 10, range=None, normed=False, weights=None,
81478161 An array of values w_i weighing each sample (x_i, y_i).
81488162
81498163 *cmin* : [None| scalar]
8150- All bins that has count less than cmin will not be displayed
8151- and these count values in the return value count histogram will also be set to nan upon return
8164+ All bins that has count less than cmin will not be
8165+ displayed and these count values in the return value
8166+ count histogram will also be set to nan upon return
81528167
81538168 *cmax* : [None| scalar]
8154- All bins that has count more than cmax will not be displayed (set to none before passing to imshow)
8155- and these count values in the return value count histogram will also be set to nan upon return
8169+ All bins that has count more than cmax will not be
8170+ displayed (set to none before passing to imshow) and
8171+ these count values in the return value count histogram
8172+ will also be set to nan upon return
81568173
81578174 Remaining keyword arguments are passed directly to :meth:pcolorfast
81588175
0 commit comments