I generated some in-line plots in a Jupyter notebook:
import plotly.offline as py
py.init_notebook_mode()
โฆ
py.iplot(...)
Iโm then using nbsphinx to convert this Jupyter notebook to HTML, but the plotly plots arenโt showing up. Plots that I made with matplotlib show up in the docs just fine.
What I want to do is replicate https://plot.ly/python/ipython-notebook-tutorial/. It has Jupter notebook style in and out blocks, and it shows interactive plots made using plotly. How can I do that?