@@ -2620,8 +2620,8 @@ def boxplot(x, notch=False, sym=None, vert=True, whis=1.5, positions=None,
2620
2620
widths = None , patch_artist = False , bootstrap = None , usermedians = None ,
2621
2621
conf_intervals = None , meanline = False , showmeans = False , showcaps = True ,
2622
2622
showbox = True , showfliers = True , boxprops = None , labels = None ,
2623
- flierprops = None , medianprops = None , meanprops = None ,
2624
- manage_xticks = True , hold = None ):
2623
+ flierprops = None , medianprops = None , meanprops = None , capprops = None ,
2624
+ whiskerprops = None , manage_xticks = True , hold = None ):
2625
2625
ax = gca ()
2626
2626
# allow callers to override the hold state by passing hold=True|False
2627
2627
washold = ax .ishold ()
@@ -2638,7 +2638,8 @@ def boxplot(x, notch=False, sym=None, vert=True, whis=1.5, positions=None,
2638
2638
showbox = showbox , showfliers = showfliers ,
2639
2639
boxprops = boxprops , labels = labels ,
2640
2640
flierprops = flierprops , medianprops = medianprops ,
2641
- meanprops = meanprops , manage_xticks = manage_xticks )
2641
+ meanprops = meanprops , capprops = capprops ,
2642
+ whiskerprops = whiskerprops , manage_xticks = manage_xticks )
2642
2643
draw_if_interactive ()
2643
2644
finally :
2644
2645
ax .hold (washold )
0 commit comments