diff --git a/lib/matplotlib/tests/baseline_images/test_axes/hexbin_linear.png b/lib/matplotlib/tests/baseline_images/test_axes/hexbin_linear.png new file mode 100644 index 000000000000..c9e974cbd949 Binary files /dev/null and b/lib/matplotlib/tests/baseline_images/test_axes/hexbin_linear.png differ diff --git a/lib/matplotlib/tests/test_axes.py b/lib/matplotlib/tests/test_axes.py index a55c4d52d707..0e4ab389c035 100644 --- a/lib/matplotlib/tests/test_axes.py +++ b/lib/matplotlib/tests/test_axes.py @@ -786,6 +786,20 @@ def test_hexbin_log(): plt.colorbar(h) +@image_comparison(baseline_images=['hexbin_linear'], + extensions=['png'], style='mpl20') +def test_hexbin_linear(): + + np.random.seed(19680801) + n = 100000 + x = np.random.standard_normal(n) + y = 2.0 + 3.0 * x + 4.0 * np.random.standard_normal(n) + + fig, ax = plt.subplots() + h = ax.hexbin(x, y, marginals=True, reduce_C_function=np.sum) + plt.colorbar(h) + + def test_hexbin_log_clim(): x, y = np.arange(200).reshape((2, 100)) fig, ax = plt.subplots()