8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6efb57 commit 4791c9aCopy full SHA for 4791c9a
lib/matplotlib/tests/test_axes.py
@@ -1072,14 +1072,16 @@ def test_hist_stacked_step():
1072
ax = fig.add_subplot(111)
1073
ax.hist( (d1, d2), histtype="step", stacked=True)
1074
1075
+
1076
@image_comparison(baseline_images=['hist_stacked_normed'])
1077
def test_hist_stacked_normed():
1078
# make some data
1079
d1 = np.linspace(1, 3, 20)
1080
d2 = np.linspace(0, 10, 50)
1081
fig = plt.figure()
1082
- ax.hist( (d1, d2), stacked=True, normed=True)
1083
+ ax.hist((d1, d2), stacked=True, normed=True)
1084
1085
1086
@image_comparison(baseline_images=['hist_stacked_bar'])
1087
def test_hist_stacked_bar():
0 commit comments