For the past 2 year or so I have used jupyter notebook with plotly express charts to generate interactive HTML reports.
Recently I had to replace my work laptop with a new one, and following that I had to reinstall and setup everything back from scratch (Python, Jupyter, Plotly etc)
After the migration I have encountered 2 major issues:
The jupyter notebook filesize with the charts is currently very big, around 400MB (it was only about 20MB before the migration)
The charts are working on the jupyter notebook, but when I convert it to HTML using nbconvert, the charts don’t show up on the HTML file.
Current versions of python & libraries used:
Python 3.13.1
Plotly 6.0.0, plotly-express 0.4.1
Jupyter notebook 7.3.2
Jupyter lab 4.3.5
Snippet of code used to generate the charts:
import plotly.express as px
fig = px.box(df, x=‘year and ISO week’, y=parameter, color=‘year and ISO week’)
Hey @ngom52 ! Could you test with plotly<6.0.0 to verify whether this is an issue with the latest major version? We made some changes to how Plotly charts work in notebooks so it’s possible. If that’s the case I can create a ticket on your behalf.
Hi @nathandrezner, new to this forum but hoping you can help me out. I’ve been having the same problem as ngom52. I was able to downgrade my plotly to 5.24.1, which solved the nbconvert issue, but when I do this, my figures no longer render inline in jupyterlab notebooks. My workaround is to have two envs, one for working in notebooks, one for exporting notebooks, both with different versions of plotly. But I havent been able to determine what is the root cause of this issue. I’d prefer to use Plotly 6.0.0 for everything, but cannot upgrade until I figure this out.