visualize Diagramme in Spyder

eit November 2015 ist plotly Open-Source und für Python verfügbar.https: //plot.ly/javascript/open-source-announcement

Wenn ich versuche, einige Plots offline zu erstellen, funktionieren diese in iPython Notebook (Version 4.0.4). Wenn ich jedoch versuche, sie in Spyder (Version 2.3.8) auszuführen, erhalte ich nur die folgende Ausgabe:

<IPython.core.display.HTML object>
<IPython.core.display.HTML object>

Es stimmt etwas nicht in meinem Code oder das iPython-Terminal von Spyder unterstützt dies immer noch nicht?

Hier geht's zum Beispielcode (entnommen aushttps: //www.reddit.com/r/IPython/comments/3tibc8/tip_on_how_to_run_plotly_examples_in_offline_mode)

from plotly.offline import download_plotlyjs, init_notebook_mode, iplot
from plotly.graph_objs import *
init_notebook_mode()

trace0 = Scatter(
    x=[1, 2, 3, 4],
    y=[10, 11, 12, 13],
    mode='markers',
    marker=dict(
        size=[40, 60, 80, 100],
    )
)
data = [trace0]
layout = Layout(
    showlegend=False,
    height=600,
    width=600,
)

fig = dict( data=data, layout=layout )

iplot(fig)  

Antworten auf die Frage(2)

Ihre Antwort auf die Frage