()
| 1113 | |
| 1114 | |
| 1115 | def test_hexbin_log_clim(): |
| 1116 | x, y = np.arange(200).reshape((2, 100)) |
| 1117 | fig, ax = plt.subplots() |
| 1118 | h = ax.hexbin(x, y, bins='log', vmin=2, vmax=100) |
| 1119 | assert h.get_clim() == (2, 100) |
| 1120 | |
| 1121 | |
| 1122 | @check_figures_equal() |