Skip to content

Commit 64b1196

Browse files
committed
reran boilerplate.py
1 parent 9b0118f commit 64b1196

File tree

1 file changed

+19
-11
lines changed

1 file changed

+19
-11
lines changed

lib/matplotlib/pyplot.py

+19-11
Original file line numberDiff line numberDiff line change
@@ -2601,7 +2601,9 @@ def broken_barh(xranges, yrange, hold=None, **kwargs):
26012601
@_autogen_docstring(Axes.boxplot)
26022602
def boxplot(x, notch=False, sym='b+', vert=True, whis=1.5, positions=None,
26032603
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):
26052607
ax = gca()
26062608
# allow callers to override the hold state by passing hold=True|False
26072609
washold = ax.ishold()
@@ -2612,7 +2614,13 @@ def boxplot(x, notch=False, sym='b+', vert=True, whis=1.5, positions=None,
26122614
ret = ax.boxplot(x, notch=notch, sym=sym, vert=vert, whis=whis,
26132615
positions=positions, widths=widths,
26142616
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)
26162624
draw_if_interactive()
26172625
finally:
26182626
ax.hold(washold)
@@ -2623,8 +2631,8 @@ def boxplot(x, notch=False, sym='b+', vert=True, whis=1.5, positions=None,
26232631
# changes will be lost
26242632
@_autogen_docstring(Axes.cohere)
26252633
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):
26282636
ax = gca()
26292637
# allow callers to override the hold state by passing hold=True|False
26302638
washold = ax.ishold()
@@ -2746,9 +2754,9 @@ def errorbar(x, y, yerr=None, xerr=None, fmt='-', ecolor=None, elinewidth=None,
27462754
# This function was autogenerated by boilerplate.py. Do not edit as
27472755
# changes will be lost
27482756
@_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):
27522760
ax = gca()
27532761
# allow callers to override the hold state by passing hold=True|False
27542762
washold = ax.ishold()
@@ -2896,8 +2904,8 @@ def hist2d(x, y, bins=10, range=None, normed=False, weights=None, cmin=None,
28962904
# This function was autogenerated by boilerplate.py. Do not edit as
28972905
# changes will be lost
28982906
@_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):
29012909
ax = gca()
29022910
# allow callers to override the hold state by passing hold=True|False
29032911
washold = ax.ishold()
@@ -3389,8 +3397,8 @@ def triplot(*args, **kwargs):
33893397
# This function was autogenerated by boilerplate.py. Do not edit as
33903398
# changes will be lost
33913399
@_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):
33943402
ax = gca()
33953403
# allow callers to override the hold state by passing hold=True|False
33963404
washold = ax.ishold()

0 commit comments

Comments
 (0)