@@ -160,7 +160,7 @@ def set_title(self, label, fontdict=None, loc=None, pad=None,
160160
161161 fontdict : dict
162162 A dictionary controlling the appearance of the title text,
163- the default ` fontdict` is::
163+ the default * fontdict* is::
164164
165165 {'fontsize': rcParams['axes.titlesize'],
166166 'fontweight' : rcParams['axes.titleweight'],
@@ -723,7 +723,7 @@ def text(self, x, y, s, fontdict=None, withdash=False, **kwargs):
723723 ... verticalalignment='center', transform=ax.transAxes)
724724
725725 You can put a rectangular box around the text instance (e.g., to
726- set a background color) by using the keyword ` bbox` . ` bbox` is
726+ set a background color) by using the keyword * bbox* . * bbox* is
727727 a dictionary of `~matplotlib.patches.Rectangle`
728728 properties. For example::
729729
@@ -967,8 +967,8 @@ def axvspan(self, xmin, xmax, ymin=0, ymax=1, **kwargs):
967967 """
968968 Add a vertical span (rectangle) across the axes.
969969
970- Draw a vertical span (rectangle) from ` xmin` to ` xmax` . With
971- the default values of ` ymin` = 0 and ` ymax` = 1. This always
970+ Draw a vertical span (rectangle) from * xmin* to * xmax* . With
971+ the default values of * ymin* = 0 and * ymax* = 1. This always
972972 spans the yrange, regardless of the ylim settings, even if you
973973 change them, e.g., with the :meth:`set_ylim` command. That is,
974974 the vertical extent is in axes coords: 0=bottom, 0.5=middle,
@@ -3680,7 +3680,7 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
36803680 # if non-default sym value, put it into the flier dictionary
36813681 # the logic for providing the default symbol ('b+') now lives
36823682 # in bxp in the initial value of final_flierprops
3683- # handle all of the ` sym` related logic here so we only have to pass
3683+ # handle all of the * sym* related logic here so we only have to pass
36843684 # on the flierprops dict.
36853685 if sym is not None :
36863686 # no-flier case, which should really be done with
@@ -6351,12 +6351,12 @@ def hist(self, x, bins=None, range=None, density=False, weights=None,
63516351 If an integer is given, ``bins + 1`` bin edges are calculated and
63526352 returned, consistent with `numpy.histogram`.
63536353
6354- If ` bins` is a sequence, gives bin edges, including left edge of
6355- first bin and right edge of last bin. In this case, ` bins` is
6354+ If * bins* is a sequence, gives bin edges, including left edge of
6355+ first bin and right edge of last bin. In this case, * bins* is
63566356 returned unmodified.
63576357
63586358 All but the last (righthand-most) bin is half-open. In other
6359- words, if ` bins` is::
6359+ words, if * bins* is::
63606360
63616361 [1, 2, 3, 4]
63626362
@@ -7911,7 +7911,7 @@ def violin(self, vpstats, positions=None, vert=True, widths=0.5,
79117911 showmeans = False , showextrema = True , showmedians = False ):
79127912 """Drawing function for violin plots.
79137913
7914- Draw a violin plot for each column of ` vpstats` . Each filled area
7914+ Draw a violin plot for each column of * vpstats* . Each filled area
79157915 extends to represent the entire data range, with optional lines at the
79167916 mean, the median, the minimum, the maximum, and the quantiles values.
79177917
0 commit comments