@@ -2603,7 +2603,8 @@ def boxplot(x, notch=None, sym=None, vert=None, whis=None, positions=None,
2603
2603
conf_intervals = None , meanline = None , showmeans = None , showcaps = None ,
2604
2604
showbox = None , showfliers = None , boxprops = None , labels = None ,
2605
2605
flierprops = None , medianprops = None , meanprops = None , capprops = None ,
2606
- whiskerprops = None , manage_xticks = True , hold = None , data = None ):
2606
+ whiskerprops = None , manage_xticks = True , autorange = False , zorder = None ,
2607
+ hold = None , data = None ):
2607
2608
ax = gca ()
2608
2609
# allow callers to override the hold state by passing hold=True|False
2609
2610
washold = ax .ishold ()
@@ -2622,7 +2623,8 @@ def boxplot(x, notch=None, sym=None, vert=None, whis=None, positions=None,
2622
2623
flierprops = flierprops , medianprops = medianprops ,
2623
2624
meanprops = meanprops , capprops = capprops ,
2624
2625
whiskerprops = whiskerprops ,
2625
- manage_xticks = manage_xticks , data = data )
2626
+ manage_xticks = manage_xticks , autorange = autorange ,
2627
+ zorder = zorder , data = data )
2626
2628
finally :
2627
2629
ax .hold (washold )
2628
2630
@@ -3283,7 +3285,7 @@ def step(x, y, *args, **kwargs):
3283
3285
@_autogen_docstring (Axes .streamplot )
3284
3286
def streamplot (x , y , u , v , density = 1 , linewidth = None , color = None , cmap = None ,
3285
3287
norm = None , arrowsize = 1 , arrowstyle = '-|>' , minlength = 0.1 ,
3286
- transform = None , zorder = 2 , start_points = None , maxlength = 4.0 ,
3288
+ transform = None , zorder = None , start_points = None , maxlength = 4.0 ,
3287
3289
integration_direction = 'both' , hold = None , data = None ):
3288
3290
ax = gca ()
3289
3291
# allow callers to override the hold state by passing hold=True|False
0 commit comments