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:

hexbin plot log scale colours

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

enter image description here


Comments

Popular posts from this blog

php - Hide output during test execution -

java - Drawing vector images on PDF with PDFBox -

Qt4: how to send QString inside a struct via QSharedMemory -