Dear All,
I am trying to use plotly (iplot) to create figures offline. Unfortunately, I could not get offline plots to display, instead I get the external temporary file. For example, when I run this script,
from plotly import version
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
print version
init_notebook_mode(connected=True)
iplot([{βxβ: [1, 2, 3], βyβ: [3, 1, 6]}])
I am only getting this output.
1.12.12
<IPython.core.display.HTML object>
<IPython.core.display.HTML object>
How can I resolve this problem?
Best