@@ -2605,7 +2605,8 @@ def boxplot(x, notch=None, sym=None, vert=None, whis=None, positions=None,
2605
2605
conf_intervals = None , meanline = None , showmeans = None , showcaps = None ,
2606
2606
showbox = None , showfliers = None , boxprops = None , labels = None ,
2607
2607
flierprops = None , medianprops = None , meanprops = None , capprops = None ,
2608
- whiskerprops = None , manage_xticks = True , hold = None , data = None ):
2608
+ whiskerprops = None , manage_xticks = True , autorange = False , zorder = None ,
2609
+ hold = None , data = None ):
2609
2610
ax = gca ()
2610
2611
# allow callers to override the hold state by passing hold=True|False
2611
2612
washold = ax .ishold ()
@@ -2624,7 +2625,8 @@ def boxplot(x, notch=None, sym=None, vert=None, whis=None, positions=None,
2624
2625
flierprops = flierprops , medianprops = medianprops ,
2625
2626
meanprops = meanprops , capprops = capprops ,
2626
2627
whiskerprops = whiskerprops ,
2627
- manage_xticks = manage_xticks , data = data )
2628
+ manage_xticks = manage_xticks , autorange = autorange ,
2629
+ zorder = zorder , data = data )
2628
2630
finally :
2629
2631
ax .hold (washold )
2630
2632
@@ -2812,17 +2814,17 @@ def fill_between(x, y1, y2=0, where=None, interpolate=False, step=None,
2812
2814
# This function was autogenerated by boilerplate.py. Do not edit as
2813
2815
# changes will be lost
2814
2816
@_autogen_docstring (Axes .fill_betweenx )
2815
- def fill_betweenx (y , x1 , x2 = 0 , where = None , step = None , hold = None , data = None ,
2816
- ** kwargs ):
2817
+ def fill_betweenx (y , x1 , x2 = 0 , where = None , step = None , interpolate = False ,
2818
+ hold = None , data = None , ** kwargs ):
2817
2819
ax = gca ()
2818
2820
# allow callers to override the hold state by passing hold=True|False
2819
2821
washold = ax .ishold ()
2820
2822
2821
2823
if hold is not None :
2822
2824
ax .hold (hold )
2823
2825
try :
2824
- ret = ax .fill_betweenx (y , x1 , x2 = x2 , where = where , step = step , data = data ,
2825
- ** kwargs )
2826
+ ret = ax .fill_betweenx (y , x1 , x2 = x2 , where = where , step = step ,
2827
+ interpolate = interpolate , data = data , ** kwargs )
2826
2828
finally :
2827
2829
ax .hold (washold )
2828
2830
@@ -2857,7 +2859,7 @@ def hexbin(x, y, C=None, gridsize=100, bins=None, xscale='linear',
2857
2859
# This function was autogenerated by boilerplate.py. Do not edit as
2858
2860
# changes will be lost
2859
2861
@_autogen_docstring (Axes .hist )
2860
- def hist (x , bins = 10 , range = None , normed = False , weights = None , cumulative = False ,
2862
+ def hist (x , bins = None , range = None , normed = False , weights = None , cumulative = False ,
2861
2863
bottom = None , histtype = 'bar' , align = 'mid' , orientation = 'vertical' ,
2862
2864
rwidth = None , log = False , color = None , label = None , stacked = False ,
2863
2865
hold = None , data = None , ** kwargs ):
@@ -3285,7 +3287,8 @@ def step(x, y, *args, **kwargs):
3285
3287
@_autogen_docstring (Axes .streamplot )
3286
3288
def streamplot (x , y , u , v , density = 1 , linewidth = None , color = None , cmap = None ,
3287
3289
norm = None , arrowsize = 1 , arrowstyle = '-|>' , minlength = 0.1 ,
3288
- transform = None , zorder = 2 , start_points = None , hold = None , data = None ):
3290
+ transform = None , zorder = None , start_points = None , hold = None ,
3291
+ data = None ):
3289
3292
ax = gca ()
3290
3293
# allow callers to override the hold state by passing hold=True|False
3291
3294
washold = ax .ishold ()
@@ -3722,20 +3725,6 @@ def winter():
3722
3725
im .set_cmap (cm .winter )
3723
3726
3724
3727
3725
- # This function was autogenerated by boilerplate.py. Do not edit as
3726
- # changes will be lost
3727
- def spectral ():
3728
- '''
3729
- set the default colormap to spectral and apply to current image if any.
3730
- See help(colormaps) for more information
3731
- '''
3732
- rc ('image' , cmap = 'spectral' )
3733
- im = gci ()
3734
-
3735
- if im is not None :
3736
- im .set_cmap (cm .spectral )
3737
-
3738
-
3739
3728
# This function was autogenerated by boilerplate.py. Do not edit as
3740
3729
# changes will be lost
3741
3730
def magma ():
@@ -3791,4 +3780,39 @@ def viridis():
3791
3780
if im is not None :
3792
3781
im .set_cmap (cm .viridis )
3793
3782
3783
+
3784
+ # This function was autogenerated by boilerplate.py. Do not edit as
3785
+ # changes will be lost
3786
+ def nipy_spectral ():
3787
+ '''
3788
+ set the default colormap to nipy_spectral and apply to current image if any.
3789
+ See help(colormaps) for more information
3790
+ '''
3791
+ rc ('image' , cmap = 'nipy_spectral' )
3792
+ im = gci ()
3793
+
3794
+ if im is not None :
3795
+ im .set_cmap (cm .nipy_spectral )
3796
+
3797
+
3798
+ # This function was autogenerated by boilerplate.py. Do not edit as
3799
+ # changes will be lost
3800
+ def spectral ():
3801
+ '''
3802
+ set the default colormap to spectral and apply to current image if any.
3803
+ See help(colormaps) for more information
3804
+ '''
3805
+ from matplotlib .cbook import warn_deprecated
3806
+ warn_deprecated (
3807
+ "2.0" ,
3808
+ name = "spectral" ,
3809
+ obj_type = "colormap"
3810
+ )
3811
+
3812
+ rc ('image' , cmap = 'spectral' )
3813
+ im = gci ()
3814
+
3815
+ if im is not None :
3816
+ im .set_cmap (cm .spectral )
<
3A87
/td>3817
+
3794
3818
_setup_pyplot_info_docstrings ()
0 commit comments