Skip to content

Instantly share code, notes, and snippets.

@tanvirstreame
Created September 17, 2019 12:25
Show Gist options
  • Save tanvirstreame/873e9c092eb0cbdebd7bf2b85f9f2b2f to your computer and use it in GitHub Desktop.
Save tanvirstreame/873e9c092eb0cbdebd7bf2b85f9f2b2f to your computer and use it in GitHub Desktop.
draw graph
import plotly.express as px
import pandas as pd
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/finance-charts-apple.csv')
fig = px.line(df, x='Date', y='AAPL.High')
fig.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment