Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add option for log color scale with px.imshow #3735

Open
janosh opened this issue May 18, 2022 · 3 comments
Open

add option for log color scale with px.imshow #3735

janosh opened this issue May 18, 2022 · 3 comments
Labels
feature something new P3 backlog

Comments

@janosh
Copy link
Contributor

janosh commented May 18, 2022

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:

df_log = np.log10(df)

fig = px.imshow(
    df_log,
    text_auto=True,
)

ticks = [1, 0.5, 0.2, 0.1, 0.05, 0.02, 0.01]
vals = np.log10(ticks)
fig.update_layout(coloraxis_colorbar=dict(tickvals=vals, ticktext=ticks))
@loehndorf
Copy link

I second this idea. I can log-transform the data but then the color scale does not show the right values anymore.

@SengerM
Copy link

SengerM commented Jul 27, 2023

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.

@gvwilson
Copy link
Contributor

see #3616

@gvwilson gvwilson self-assigned this Jul 11, 2024
@gvwilson gvwilson removed their assignment Aug 2, 2024
@gvwilson gvwilson added the P3 backlog label Aug 12, 2024
@gvwilson gvwilson changed the title add option log color scale with px.imshow add option for log color scale with px.imshow Aug 12, 2024
@gvwilson gvwilson added the feature something new label Aug 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature something new P3 backlog
Projects
None yet
Development

No branches or pull requests

4 participants