9
9
10
10
Classes, methods and attributes
11
11
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12
+ - ``artist.Artist.aname `` property (no replacement)
13
+
14
+ - ``axis.Axis.iter_ticks `` (no replacement)
15
+
12
16
- ``backend_bases.RendererBase.strip_math() ``
13
17
(use ``cbook.strip_math() `` instead)
14
18
@@ -39,38 +43,66 @@ Classes, methods and attributes
39
43
- ``backend_qt5.NavigationToolbar2QT.buttons `` property (no replacement)
40
44
- ``backend_qt5.NavigationToolbar2QT.adj_window `` property (no replacement)
41
45
46
+ - ``bezier.find_r_to_boundary_of_closedpath() `` (no replacement)
47
+
42
48
- ``cbook.dedent() `` (use `inspect.cleandoc ` instead)
43
49
- ``cbook.get_label() `` (no replacement)
44
50
- ``cbook.is_hashable() `` (use ``isinstance(..., collections.abc.Hashable) ``
45
51
instead)
46
52
- ``cbook.iterable() `` (use ``numpy.iterable() `` instead)
47
53
- ``cbook.safezip() `` (no replacement)
48
54
55
+ - ``colorbar.ColorbarBase.get_cmap `` (use ``ScalarMappable.get_cmap `` instead)
56
+ - ``colorbar.ColorbarBase.set_cmap `` (use ``ScalarMappable.set_cmap `` instead)
57
+ - ``colorbar.ColorbarBase.get_clim `` (use ``ScalarMappable.get_clim `` instead)
58
+ - ``colorbar.ColorbarBase.set_clim `` (use ``ScalarMappable.set_clim `` instead)
59
+ - ``colorbar.ColorbarBase.set_norm `` (use ``ScalarMappable.set_norm `` instead)
60
+
61
+ - ``dates.seconds() `` (no replacement)
62
+ - ``dates.minutes() `` (no replacement)
63
+ - ``dates.hours() `` (no replacement)
64
+ - ``dates.weeks() `` (no replacement)
65
+ - ``dates.strpdate2num `` and ``dates.bytespdate2num `` (use `time.strptime ` or
66
+ `dateutil.parser.parse ` or `.dates.datestr2num ` instead)
67
+
49
68
- ``docstring.Appender `` (no replacement)
50
69
- ``docstring.dedent() `` (use `inspect.getdoc ` instead)
51
70
- ``docstring.copy_dedent() ``
52
71
(use ``docstring.copy() `` and `inspect.getdoc ` instead)
53
72
73
+ - ``font_manager.OSXInstalledFonts() `` (no replacement)
74
+
75
+ - ``image.BboxImage.interp_at_native `` property (no replacement)
76
+
77
+ - ``lines.Line2D.verticalOffset `` property (no replacement)
78
+
54
79
- ``matplotlib.checkdep_dvipng `` (no replacement)
55
80
- ``matplotlib.checkdep_ghostscript `` (no replacement)
56
81
- ``matplotlib.checkdep_pdftops `` (no replacement)
57
82
- ``matplotlib.checkdep_inkscape `` (no replacement)
58
83
- ``matplotlib.get_py2exe_datafiles `` (no replacement)
59
84
- ``matplotlib.tk_window_focus `` (use ``rcParams['tk.window_focus'] `` instead)
60
85
86
+ - ``mlab.demean() `` (use ``mlab.detrend_mean() `` instead)
87
+
88
+ - ``path.get_paths_extents() ``
89
+ (use ``path.get_path_collection_extents() `` instead)
90
+
91
+ - ``projections.process_projection_requirements() `` (no replacement)
92
+
61
93
- ``pyplot.plotfile() `` (Instead, load the data using
62
94
`pandas.read_csv ` or `numpy.loadtxt ` or similar and use regular pyplot
63
95
functions to plot the loaded data.)
96
+
97
+ - ``quiver.Quiver.color() `` (use ``Quiver.get_facecolor() `` instead)
98
+ - ``quiver.Quiver.keyvec `` property (no replacement)
99
+ - ``quiver.Quiver.keytext `` property (no replacement)
100
+
64
101
- ``rcsetup.validate_qt4() `` (no replacement)
65
102
- ``rcsetup.validate_qt5() `` (no replacement)
66
103
- ``rcsetup.validate_verbose() `` (no replacement)
67
104
- ``rcsetup.ValidateInterval `` (no replacement)
68
105
69
- - ``sphinxext.plot_directive.plot_directive() ``
70
- (use the class ``PlotDirective `` instead)
71
- - ``sphinxext.mathmpl.math_directive() ``
72
- (use the class ``MathDirective `` instead)
73
-
74
106
- ``scale.LogTransformBase `` (use ``scale.LogTransform `` instead)
75
107
- ``scale.InvertedLogTransformBase `` (use ``scale.InvertedLogTransform `` instead)
76
108
- ``scale.Log10Transform `` (use ``scale.LogTransform `` instead)
@@ -80,6 +112,11 @@ Classes, methods and attributes
80
112
- ``scale.NaturalLogTransform `` (use ``scale.LogTransform `` instead)
81
113
- ``scale.InvertedNaturalLogTransform `` (use ``scale.InvertedLogTransform `` instead)
82
114
115
+ - ``sphinxext.plot_directive.plot_directive() ``
116
+ (use the class ``PlotDirective `` instead)
117
+ - ``sphinxext.mathmpl.math_directive() ``
118
+ (use the class ``MathDirective `` instead)
119
+
83
120
- ``spines.Spine.is_frame_like() `` (no replacement)
84
121
85
122
- ``text.Text.is_math_text() `` (use ``cbook.is_math_text() `` instead)
@@ -98,38 +135,7 @@ Classes, methods and attributes
98
135
``Tick.tick1line ``, ``Tick.tick2line ``, ``Tick.label1 ``, ``Tick.label2 ``
99
136
instead)
100
137
101
- - ``Artist.aname `` property (no replacement)
102
- - ``Axis.iter_ticks `` (no replacement)
103
-
104
- - ``image.BboxImage.interp_at_native `` property (no replacement)
105
- - ``lines.Line2D.verticalOffset `` property (no replacement)
106
- - ``bezier.find_r_to_boundary_of_closedpath() `` (no replacement)
107
-
108
- - ``quiver.Quiver.color() `` (use ``Quiver.get_facecolor() `` instead)
109
- - ``quiver.Quiver.keyvec `` property (no replacement)
110
- - ``quiver.Quiver.keytext `` property (no replacement)
111
-
112
- - ``colorbar.ColorbarBase.get_cmap `` (use ``ScalarMappable.get_cmap `` instead)
113
- - ``colorbar.ColorbarBase.set_cmap `` (use ``ScalarMappable.set_cmap `` instead)
114
- - ``colorbar.ColorbarBase.get_clim `` (use ``ScalarMappable.get_clim `` instead)
115
- - ``colorbar.ColorbarBase.set_clim `` (use ``ScalarMappable.set_clim `` instead)
116
- - ``colorbar.ColorbarBase.set_norm `` (use ``ScalarMappable.set_norm `` instead)
117
-
118
- - ``dates.seconds() `` (no replacement)
119
- - ``dates.minutes() `` (no replacement)
120
- - ``dates.hours() `` (no replacement)
121
- - ``dates.weeks() `` (no replacement)
122
- - ``dates.strpdate2num `` and ``dates.bytespdate2num `` (use `time.strptime ` or
123
- `dateutil.parser.parse ` or `.dates.datestr2num ` instead)
124
-
125
- - ``font_manager.OSXInstalledFonts() `` (no replacement)
126
-
127
- - ``mlab.demean() `` (use ``mlab.detrend_mean() `` instead)
128
-
129
- - ``projections.process_projection_requirements() `` (no replacement)
130
-
131
- - ``path.get_paths_extents() ``
132
- (use ``path.get_path_collection_extents() `` instead)
138
+ - ``widgets.SpanSelector.buttonDown `` property (no replacement)
133
139
134
140
- ``mplot3d.proj3d.line2d() `` (no replacement)
135
141
- ``mplot3d.proj3d.line2d_dist() `` (no replacement)
@@ -159,8 +165,6 @@ Classes, methods and attributes
159
165
- ``axisartist.axislines.Axes.AxisDict ``
160
166
(use ``axis_grid1.mpl_axes.Axes.AxisDict `` instead)
161
167
162
- - ``widgets.SpanSelector.buttonDown `` property (no replacement)
163
-
164
168
Arguments
165
169
~~~~~~~~~
166
170
- ``Axes.text() `` / ``pyplot.text() `` do not support the parameter ``withdash ``
0 commit comments