()
| 1030 | |
| 1031 | |
| 1032 | def test_hexbin_string_norm(): |
| 1033 | fig, ax = plt.subplots() |
| 1034 | hex = ax.hexbin(np.random.rand(10), np.random.rand(10), norm="log", vmin=2, vmax=5) |
| 1035 | assert isinstance(hex, matplotlib.collections.PolyCollection) |
| 1036 | assert isinstance(hex.norm, matplotlib.colors.LogNorm) |
| 1037 | assert hex.norm.vmin == 2 |
| 1038 | assert hex.norm.vmax == 5 |
| 1039 | |
| 1040 | |
| 1041 | @image_comparison(['hexbin_empty.png'], remove_text=True, style='_classic_test') |