How to plot multiple lines on the same y-axis using plotly express?

@microprediction try this:

import plotly.express as px 
import pandas as pd 

# Get some data
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/finance-charts-apple.csv')

fig = px.line(df, x='Date', y=['AAPL.High', 'AAPL.Low'])
fig.show()
8 Likes