Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import plotly.graph_objs as go
  2. from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
  3.  
  4. init_notebook_mode(connected=True)
  5.  
  6. data = [go.Bar(
  7. x=xlabels,
  8. y=ydata
  9. )]
  10.  
  11. iplot(data)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement