-
-
Save amankharwal/9a02a55c8374f43e4a38bb5b59eb21d7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import plotly.express as px | |
data = px.data.tips() | |
figure = px.bar(data, x = "sex", y = "total_bill") | |
figure.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment