# Had to install plotly
# Had to install pandas
import plotly.express as px
import math
# Draw the graph
# can use line, scatter, and more
x = [1,2,3,4,5,6]
y = [1,4,9,15,25,36]
plot = px.line(x=x, y=y)
plot.update_layout(title='MPG vs Weight',xaxis_title='MPG',yaxis_title='Weight')
plot.show()
