import plotlyimport plotly.graph_objs as go
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/finance-charts-apple.csv')data = [go.Scatter(x=df.Date, y=df['AAPL.High'], mode= 'markers')]plotly.offline.init_notebook_mode()plotly.offline.iplot(data,image_height=600,image_width=1600)



