@@ -2593,10 +2593,10 @@ def contour(self, X, Y, Z, *args,
2593
2593
offset : float, optional
2594
2594
If specified, plot a projection of the contour lines at this
2595
2595
position in a plane normal to *zdir*.
2596
- data : indexable object, optional
2597
- DATA_PARAMETER_PLACEHOLDER
2598
2596
axlim_clip : bool, default: False
2599
2597
Whether to hide lines with a vertex outside the axes view limits.
2598
+ data : indexable object, optional
2599
+ DATA_PARAMETER_PLACEHOLDER
2600
2600
2601
2601
*args, **kwargs
2602
2602
Other arguments are forwarded to `matplotlib.axes.Axes.contour`.
@@ -2640,10 +2640,10 @@ def tricontour(self, *args,
2640
2640
offset : float, optional
2641
2641
If specified, plot a projection of the contour lines at this
2642
2642
position in a plane normal to *zdir*.
2643
- data : indexable object, optional
2644
- DATA_PARAMETER_PLACEHOLDER
2645
2643
axlim_clip : bool, default: False
2646
2644
Whether to hide lines with a vertex outside the axes view limits.
2645
+ data : indexable object, optional
2646
+ DATA_PARAMETER_PLACEHOLDER
2647
2647
*args, **kwargs
2648
2648
Other arguments are forwarded to `matplotlib.axes.Axes.tricontour`.
2649
2649
@@ -2697,10 +2697,10 @@ def contourf(self, X, Y, Z, *args,
2697
2697
offset : float, optional
2698
2698
If specified, plot a projection of the contour lines at this
2699
2699
position in a plane normal to *zdir*.
2700
- data : indexable object, optional
2701
- DATA_PARAMETER_PLACEHOLDER
2702
2700
axlim_clip : bool, default: False
2703
2701
Whether to hide lines with a vertex outside the axes view limits.
2702
+ data : indexable object, optional
2703
+ DATA_PARAMETER_PLACEHOLDER
2704
2704
*args, **kwargs
2705
2705
Other arguments are forwarded to `matplotlib.axes.Axes.contourf`.
2706
2706
@@ -2737,10 +2737,10 @@ def tricontourf(self, *args, zdir='z', offset=None, axlim_clip=False, **kwargs):
2737
2737
offset : float, optional
2738
2738
If specified, plot a projection of the contour lines at this
2739
2739
position in a plane normal to zdir.
2740
- data : indexable object, optional
2741
- DATA_PARAMETER_PLACEHOLDER
2742
2740
axlim_clip : bool, default: False
2743
2741
Whether to hide lines with a vertex outside the axes view limits.
2742
+ data : indexable object, optional
2743
+ DATA_PARAMETER_PLACEHOLDER
2744
2744
*args, **kwargs
2745
2745
Other arguments are forwarded to
2746
2746
`matplotlib.axes.Axes.tricontourf`.
@@ -2935,10 +2935,10 @@ def bar(self, left, height, zs=0, zdir='z', *args,
2935
2935
used for all bars.
2936
2936
zdir : {'x', 'y', 'z'}, default: 'z'
2937
2937
When plotting 2D data, the direction to use as z ('x', 'y' or 'z').
2938
- data : indexable object, optional
2939
- DATA_PARAMETER_PLACEHOLDER
2940
2938
axlim_clip : bool, default: False
2941
2939
Whether to hide bars with points outside the axes view limits.
2940
+ data : indexable object, optional
2941
+ DATA_PARAMETER_PLACEHOLDER
2942
2942
**kwargs
2943
2943
Other keyword arguments are forwarded to
2944
2944
`matplotlib.axes.Axes.bar`.
@@ -3026,12 +3026,12 @@ def bar3d(self, x, y, z, dx, dy, dz, color=None,
3026
3026
lightsource : `~matplotlib.colors.LightSource`, optional
3027
3027
The lightsource to use when *shade* is True.
3028
3028
3029
- data : indexable object, optional
3030
- DATA_PARAMETER_PLACEHOLDER
3031
-
3032
3029
axlim_clip : bool, default: False
3033
3030
Whether to hide the bars with points outside the axes view limits.
3034
3031
3032
+ data : indexable object, optional
3033
+ DATA_PARAMETER_PLACEHOLDER
3034
+
3035
3035
**kwargs
3036
3036
Any additional keyword arguments are passed onto
3037
3037
`~.art3d.Poly3DCollection`.
@@ -3184,12 +3184,12 @@ def quiver(self, X, Y, Z, U, V, W, *,
3184
3184
Whether all arrows are normalized to have the same length, or keep
3185
3185
the lengths defined by *u*, *v*, and *w*.
3186
3186
3187
- data : indexable object, optional
3188
- DATA_PARAMETER_PLACEHOLDER
3189
-
3190
3187
axlim_clip : bool, default: False
3191
3188
Whether to hide arrows with points outside the axes view limits.
3192
3189
3190
+ data : indexable object, optional
3191
+ DATA_PARAMETER_PLACEHOLDER
3192
+
3193
3193
**kwargs
3194
3194
Any additional keyword arguments are delegated to
3195
3195
:class:`.Line3DCollection`
@@ -3890,12 +3890,12 @@ def stem(self, x, y, z, *, linefmt='C0-', markerfmt='C0o', basefmt='C3-',
3890
3890
orientation : {'x', 'y', 'z'}, default: 'z'
3891
3891
The direction along which stems are drawn.
3892
3892
3893
- data : indexable object, optional
3894
- DATA_PARAMETER_PLACEHOLDER
3895
-
3896
3893
axlim_clip : bool, default: False
3897
3894
Whether to hide stems that are outside the axes limits.
3898
3895
3896
+ data : indexable object, optional
3897
+ DATA_PARAMETER_PLACEHOLDER
3898
+
3899
3899
Returns
3900
3900
-------
3901
3901
`.StemContainer`
0 commit comments