Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0da8dec

Browse files
committed
BUG : update pyplot
1 parent 809e627 commit 0da8dec

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lib/matplotlib/pyplot.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2620,8 +2620,8 @@ def boxplot(x, notch=False, sym=None, vert=True, whis=1.5, positions=None,
26202620
widths=None, patch_artist=False, bootstrap=None, usermedians=None,
26212621
conf_intervals=None, meanline=False, showmeans=False, showcaps=True,
26222622
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):
26252625
ax = gca()
26262626
# allow callers to override the hold state by passing hold=True|False
26272627
washold = ax.ishold()
@@ -2638,7 +2638,8 @@ def boxplot(x, notch=False, sym=None, vert=True, whis=1.5, positions=None,
26382638
showbox=showbox, showfliers=showfliers,
26392639
boxprops=boxprops, labels=labels,
26402640
flierprops=flierprops, medianprops=medianprops,
2641-
meanprops=meanprops, manage_xticks=manage_xticks)
2641+
meanprops=meanprops, capprops=capprops,
2642+
whiskerprops=whiskerprops, manage_xticks=manage_xticks)
26422643
draw_if_interactive()
26432644
finally:
26442645
ax.hold(washold)

0 commit comments

Comments
 (0)