Open
Description
Our docs for using Plotly in Jupyter are quite out of date: https://plotly.com/python/ipython-notebook-tutorial/
import chart_studio.plotly as py
import plotly.graph_objects as go
data = [go.Bar(x=df.School,
y=df.Gap)]
py.iplot(data, filename='jupyter-basic_bar')
Is one of the examples... we should update this for 2024 with modern examples, syntax, troubleshooting etc.