dorgol
Results
1
issues of
dorgol
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...