@@ -4432,8 +4432,7 @@ 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' | 'small' | 'medium' | 'large' | 'x-large' | 'xx-large' ]
44374436 Set the font size. May be either a size string, relative to
44384437 the default font size, or an absolute font size in points. This
44394438 argument is only used if prop is not specified.
@@ -5602,17 +5601,17 @@ def boxplot(self, x, notch=False, sym='b+', vert=True, whis=1.5,
56025601
56035602 Returns a dictionary mapping each component of the boxplot
56045603 to a list of the :class:`matplotlib.lines.Line2D`
5605- instances created. That disctionary has the following keys
5604+ instances created. That dictionary has the following keys
56065605 (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).
56155606
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+ n-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).
56165615
56175616 **Example:**
56185617
@@ -7828,6 +7827,8 @@ def hist(self, x, bins=10, range=None, normed=False, weights=None,
78287827 ax.hist(12+3*np.random.randn(1000), label='women', alpha=0.5)
78297828 ax.legend()
78307829
7830+ .
7831+
78317832 kwargs are used to update the properties of the
78327833 :class:`~matplotlib.patches.Patch` instances returned by *hist*:
78337834
@@ -8121,23 +8122,35 @@ def hist2d(self, x, y, bins = 10, range=None, normed=False, weights=None,
81218122 hist2d(x, y, bins = None, range=None, weights=None, cmin=None, cmax=None **kwargs)
81228123
81238124 Make a 2d histogram plot of *x* versus *y*, where *x*,
8124- *y* are 1-D sequences of the same length
8125+ *y* are 1-D sequences of the same length.
81258126
8126- The return value is (counts,xedges,yedges,Image)
8127+ The return value is ` (counts, xedges, yedges, Image)`.
81278128
81288129 Optional keyword arguments:
81298130 *bins*: [None | int | [int, int] | array_like | [array, array]]
8131+
81308132 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).
8133+
8134+ - If int, the number of bins for the two dimensions
8135+ (nx=ny=bins).
8136+
8137+ - If [int, int], the number of bins in each dimension
8138+ (nx, ny = bins).
8139+
8140+ - If array_like, the bin edges for the two dimensions
8141+ (x_edges=y_edges=bins).
8142+
8143+ - If [array, array], the bin edges in each dimension
8144+ (x_edges, y_edges = bins).
8145+
81358146 The default value is 10.
81368147
81378148 *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.
8149+ The leftmost and rightmost edges of the bins along each
8150+ dimension (if not specified explicitly in the bins
8151+ parameters): [[xmin, xmax], [ymin, ymax]]. All values
8152+ outside of this range will be considered outliers and not
8153+ tallied in the histogram.
81418154
81428155 *normed*:[True|False]
81438156 Normalize histogram.
@@ -8147,12 +8160,15 @@ def hist2d(self, x, y, bins = 10, range=None, normed=False, weights=None,
81478160 An array of values w_i weighing each sample (x_i, y_i).
81488161
81498162 *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
8163+ All bins that has count less than cmin will not be
8164+ displayed and these count values in the return value
8165+ count histogram will also be set to nan upon return
81528166
81538167 *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
8168+ All bins that has count more than cmax will not be
8169+ displayed (set to none before passing to imshow) and
8170+ these count values in the return value count histogram
8171+ will also be set to nan upon return
81568172
81578173 Remaining keyword arguments are passed directly to :meth:pcolorfast
81588174
0 commit comments