

So, it seems that the plotly engine itself is fine, there is just something up with the jupyter connection for some types of plots.Īny suggestions on where to look, or what I'm doing wrong? Thank you! It's worth noting that I CAN do the following: fig = px.scatter_matrix(df, color="species")Īnd that automatically opens the browser window and works just fine. I tried recoding the above using the aph_objects API instead of plotly.express.I tried running the notebook in regular Jupyter, and it doesn't work there either, though the start of a plot does appear, with a sad face on the plot, indicating that something is not happy, but I'm not sure what.I also tried the relevant troubleshooting options according to.Cleaning and rebuilding jupyter lab extensions: jupyter lab clean and jupyter lab build.

#Plotly not showing in jupyterlab update#
Updating conda: conda update -all -c plotly -c conda-forge.No errors appear on the console or in the output cell. For example, the following does not work: fig = px.scatter_matrix(df, color="species") However, a simple scatter_matrix or parallel_coordinates shows no output. Most basic plots show up in my notebook file just fine, with interactivity working great! However, some plots are not appearing, and I have no idea why.įor example, the following works just fine: import plotly.express as pxįig = px.scatter(df, x="sepal_width", y="sepal_length",Ĭolor="species", marginal_y="rug", marginal_x="histogram") (All directions were followed according to: ) I have successfully installed the Plotly python libraries to work with JupyterLab.
