plotly.py icon indicating copy to clipboard operation
plotly.py copied to clipboard

log_y=True produces empty plot

Open dorgol opened this issue 4 years ago • 3 comments

I have the following case:

import plotly.express as px df = pd.DataFrame(np.random.randint(0,100,size=(100, 2)), columns=['year', 'type']) fig = px.density_heatmap(df, x='year', y='type', log_y=True) fig.show()

The returned plot is only the layout but with no actual values in it.

plotly.version = '4.14.3'

dorgol avatar Jul 12 '21 10:07 dorgol

Yeah, I have the same problem with density_heatmap. Any workaround found?

TR-EIP avatar Aug 08 '23 16:08 TR-EIP

I have the same issue

admo1 avatar Jan 05 '24 11:01 admo1

Hi @archmoj, here's a codepen of the issue in Plotly.js https://codepen.io/Liam-Connors/pen/QWoEZEx

LiamConnors avatar Jan 09 '24 19:01 LiamConnors