python - Matplotlib hexbin log scale colorbar tick labels as exponents -
when creating 2-d histogram matplotlibs hexbin
log scale colours (bins="log"
), colorbar shows exponents instead of values:
how can make show values , exponent tick marks in x , y axes in plot above?
a partial answer use norm=matplotlib.colors.lognorm()
instead of bins='log'
. doesn't show lesser tick marks though
Comments
Post a Comment