@@ -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
@@ -3285,7 +3287,7 @@ 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 , maxlength = 4.0 ,
3290
+ transform = None , zorder = None , start_points = None , maxlength = 4.0 ,
3289
3291
integration_direction = 'both' , hold = None , data = None ):
3290
3292
ax = gca ()
3291
3293
# allow callers to override the hold state by passing hold=True|False
0 commit comments