# Had to install plotly
# Had to install pandas
import plotly.express as px

y = [1,2,3,4]
x = [1,3,2,7]

# Draw the graph
plot = px.line(x=x, y=y, color_discrete_sequence=["orange"])
plot.update_layout(title='MPG vs Weight',xaxis_title='MPG',yaxis_title='Weight')
plot.show()
