Hexbin plot axes with different scales but hexagons stay symmetric

Is it possible to create a hexbin plot with symmetric hexagons but the axes at different scales? If I use match_aspect=True, then I get

image

but if I don’t use match_aspect=False, then I get

Screenshot%20at%202019-10-31%2013%3A08%3A00

But what I want is something like

hexbin1

Thanks a lot.

You can pass an aspect_scale to hex_tile to adjust, see e.g.

https://github.com/bokeh/bokeh/blob/master/examples/integration/glyphs/hex_tile.py

That said, I feel compelled to offer my opinion that hex grids on non-uniforms scales do not make sense at all from a “visualization efficacy” point of view.