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

Skip to content

Commit 9634c0e

Browse files
author
Manuel Jung
committed
Rerun boilerplate
1 parent 0662d07 commit 9634c0e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

lib/matplotlib/pyplot.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2603,7 +2603,8 @@ def boxplot(x, notch=None, sym=None, vert=None, whis=None, positions=None,
26032603
conf_intervals=None, meanline=None, showmeans=None, showcaps=None,
26042604
showbox=None, showfliers=None, boxprops=None, labels=None,
26052605
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):
26072608
ax = gca()
26082609
# allow callers to override the hold state by passing hold=True|False
26092610
washold = ax.ishold()
@@ -2622,7 +2623,8 @@ def boxplot(x, notch=None, sym=None, vert=None, whis=None, positions=None,
26222623
flierprops=flierprops, medianprops=medianprops,
26232624
meanprops=meanprops, capprops=capprops,
26242625
whiskerprops=whiskerprops,
2625-
manage_xticks=manage_xticks, data=data)
2626+
manage_xticks=manage_xticks, autorange=autorange,
2627+
zorder=zorder, data=data)
26262628
finally:
26272629
ax.hold(washold)
26282630

@@ -3283,7 +3285,7 @@ def step(x, y, *args, **kwargs):
32833285
@_autogen_docstring(Axes.streamplot)
32843286
def streamplot(x, y, u, v, density=1, linewidth=None, color=None, cmap=None,
32853287
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,
32873289
integration_direction='both', hold=None, data=None):
32883290
ax = gca()
32893291
# allow callers to override the hold state by passing hold=True|False

0 commit comments

Comments
 (0)