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

y = [1,2,3,4]
x = ["Fred", "Wilma", "Bambam", "Dino"]
c = ["red", "green", "blue", "0xff0031"]
# Draw the graph
plot = px.bar(x=x, y=y, color=c)
plot.update_layout(title='MPG vs Weight',xaxis_title='MPG',yaxis_title='Weight')

plot.show()
