@@ -27,7 +27,7 @@ converter with the `matplotlib.units` module::
27
27
from pandas.tseries import converter as pdtc
28
28
pdtc.register()
29
29
30
- If you only want to use the `pandas ` converter for `datetime64 ` values ::
30
+ If you only want to use the `pandas ` converter for `numpy. datetime64 ` values ::
31
31
32
32
from pandas.tseries import converter as pdtc
33
33
import matplotlib.units as munits
@@ -48,7 +48,7 @@ recursively search the artist for any artists it may contain that meet
48
48
some criteria (e.g., match all :class: `~matplotlib.lines.Line2D `
49
49
instances or match some arbitrary filter function). For example, the
50
50
following snippet finds every object in the figure which has a
51
- `set_color ` property and makes the object blue::
51
+ `` set_color ` ` property and makes the object blue::
52
52
53
53
def myfunc(x):
54
54
return hasattr(x, 'set_color')
@@ -246,8 +246,8 @@ over so that the tick labels fit in the figure:
246
246
Configure the tick widths
247
247
-------------------------
248
248
249
- Wherever possible, it is recommended to use the :meth: `~Axes.tick_params ` or
250
- :meth: `~Axis.set_tick_params ` methods to modify tick properties::
249
+ Wherever possible, it is recommended to use the :meth: `~.axes. Axes.tick_params `
250
+ or :meth: `~.axis. Axis.set_tick_params ` methods to modify tick properties::
251
251
252
252
import matplotlib.pyplot as plt
253
253
@@ -648,7 +648,7 @@ In general, the simplest solution when using Matplotlib in a web server is
648
648
to completely avoid using pyplot (pyplot maintains references to the opened
649
649
figures to make `~.matplotlib.pyplot.show ` work, but this will cause memory
650
650
leaks unless the figures are properly closed). Since Matplotlib 3.1, one
651
- can directly create figures using the `Figure ` constructor and save them to
651
+ can directly create figures using the `. Figure ` constructor and save them to
652
652
in-memory buffers. The following example uses Flask _, but other frameworks
653
653
work similarly::
654
654
0 commit comments