@@ -2601,7 +2601,9 @@ def broken_barh(xranges, yrange, hold=None, **kwargs):
2601
2601
@_autogen_docstring (Axes .boxplot )
2602
2602
def boxplot (x , notch = False , sym = 'b+' , vert = True , whis = 1.5 , positions = None ,
2603
2603
widths = None , patch_artist = False , bootstrap = None , usermedians = None ,
2604
- conf_intervals = None , hold = None ):
2604
+ conf_intervals = None , meanline = False , showmeans = False , showcaps = True ,
2605
+ showbox = True , showfliers = True , boxprops = None , labels = None ,
2606
+ flierprops = None , medianprops = None , meanprops = None , hold = None ):
2605
2607
ax = gca ()
2606
2608
# allow callers to override the hold state by passing hold=True|False
2607
2609
washold = ax .ishold ()
@@ -2612,7 +2614,13 @@ def boxplot(x, notch=False, sym='b+', vert=True, whis=1.5, positions=None,
2612
2614
ret = ax .boxplot (x , notch = notch , sym = sym , vert = vert , whis = whis ,
2613
2615
positions = positions , widths = widths ,
2614
2616
patch_artist = patch_artist , bootstrap = bootstrap ,
2615
- usermedians = usermedians , conf_intervals = conf_intervals )
2617
+ usermedians = usermedians ,
2618
+ conf_intervals = conf_intervals , meanline = meanline ,
2619
+ showmeans = showmeans , showcaps = showcaps ,
2620
+ showbox = showbox , showfliers = showfliers ,
2621
+ boxprops = boxprops , labels = labels ,
2622
+ flierprops = flierprops , medianprops = medianprops ,
2623
+ meanprops = meanprops )
2616
2624
draw_if_interactive ()
2617
2625
finally :
2618
2626
ax .hold (washold )
@@ -2623,8 +2631,8 @@ def boxplot(x, notch=False, sym='b+', vert=True, whis=1.5, positions=None,
2623
2631
# changes will be lost
2624
2632
@_autogen_docstring (Axes .cohere )
2625
2633
def cohere (x , y , NFFT = 256 , Fs = 2 , Fc = 0 , detrend = mlab .detrend_none ,
2626
- window = mlab .window_hanning , noverlap = 0 , pad_to = None ,
2627
- sides = 'default' , scale_by_freq = None , hold = None , ** kwargs ):
2634
+ window = mlab .window_hanning , noverlap = 0 , pad_to = None , sides = 'default' ,
2635
+ scale_by_freq = None , hold = None , ** kwargs ):
2628
2636
ax = gca ()
2629
2637
# allow callers to override the hold state by passing hold=True|False
2630
2638
washold = ax .ishold ()
@@ -2746,9 +2754,9 @@ def errorbar(x, y, yerr=None, xerr=None, fmt='-', ecolor=None, elinewidth=None,
2746
2754
# This function was autogenerated by boilerplate.py. Do not edit as
2747
2755
# changes will be lost
2748
2756
@_autogen_docstring (Axes .eventplot )
2749
- def eventplot (positions , orientation = 'horizontal' , lineoffsets = 1 ,
2750
- linelengths = 1 , linewidths = None , colors = None , linestyles = 'solid' ,
2751
- hold = None , ** kwargs ):
2757
+ def eventplot (positions , orientation = 'horizontal' , lineoffsets = 1 , linelengths = 1 ,
2758
+ linewidths = None , colors = None , linestyles = 'solid' , hold = None ,
2759
+ ** kwargs ):
2752
2760
ax = gca ()
2753
2761
# allow callers to override the hold state by passing hold=True|False
2754
2762
washold = ax .ishold ()
@@ -2896,8 +2904,8 @@ def hist2d(x, y, bins=10, range=None, normed=False, weights=None, cmin=None,
2896
2904
# This function was autogenerated by boilerplate.py. Do not edit as
2897
2905
# changes will be lost
2898
2906
@_autogen_docstring (Axes .hlines )
2899
- def hlines (y , xmin , xmax , colors = 'k' , linestyles = 'solid' , label = '' ,
2900
- hold = None , ** kwargs ):
2907
+ def hlines (y , xmin , xmax , colors = 'k' , linestyles = 'solid' , label = '' , hold = None ,
2908
+ ** kwargs ):
2901
2909
ax = gca ()
2902
2910
# allow callers to override the hold state by passing hold=True|False
2903
2911
washold = ax .ishold ()
@@ -3389,8 +3397,8 @@ def triplot(*args, **kwargs):
3389
3397
# This function was autogenerated by boilerplate.py. Do not edit as
3390
3398
# changes will be lost
3391
3399
@_autogen_docstring (Axes .vlines )
3392
- def vlines (x , ymin , ymax , colors = 'k' , linestyles = 'solid' , label = '' ,
3393
- hold = None , ** kwargs ):
3400
+ def vlines (x , ymin , ymax , colors = 'k' , linestyles = 'solid' , label = '' , hold = None ,
3401
+ ** kwargs ):
3394
3402
ax = gca ()
3395
3403
# allow callers to override the hold state by passing hold=True|False
3396
3404
washold = ax .ishold ()
0 commit comments