In [1]:
from IPython.core.display import HTML

import plotly.offline as py
import plotly.graph_objs as go
py.init_notebook_mode(connected=True)



In [2]:
d = go.Bar(x=[1,2,3], y=[4,5,6])
py.iplot([d])



In [3]:
html = '<iframe src="https://fr.wikipedia.org/wiki/Main_Page" width="640" height="480">'
HTML(html)


Out[3]:

In [ ]: