visualizar gráficos de trama en Spyder

Desde noviembre de 2015, plotly es de código abierto y está disponible para python.https://plot.ly/javascript/open-source-announcement/

Cuando intento hacer algunas tramas sin conexión, estas funcionan en iPython Notebook (versión 4.0.4) Pero si trato de ejecutarlas en Spyder (versión 2.3.8), solo obtengo el siguiente resultado:

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

¿Hay algo mal en mi código o el iPython Terminal de Spyder todavía no lo admite?

Aquí va el código de ejemplo (tomado dehttps://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)