Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. import plotly.graph_objects as go
  2. fig = go.Figure(
  3. data=[go.Bar(y=[2, 1, 3])],
  4. layout_title_text="A Figure Displaying Itself"
  5. )
  6. fig.show(renderer="pdf")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement