-
-
Save amankharwal/fedb2135a493811c0c3466d3f4a4ffae 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
pie2 = data["Location_Type"].value_counts() | |
location = pie2.index | |
orders = pie2.values | |
fig = px.pie(data, values=orders, names=location) | |
fig.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment