You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To better distinguish similar values, it would be nice if the color scale of px.imshow() could be made logarithmic without changing the values by displayed text_auto=True.
Closest I've found so far is to np.log the df and change the color bar ticks:
In case someone ends up here looking for a quick solution, here is my solution. It should be completely compatible with px.imshow, just change to imshow_logscale.
Would be nice to have something like this officially part of Plotly as log scale is very useful.
To better distinguish similar values, it would be nice if the color scale of
px.imshow()
could be made logarithmic without changing the values by displayedtext_auto=True
.Closest I've found so far is to
np.log
the df and change the color bar ticks:The text was updated successfully, but these errors were encountered: