-
-
Save amankharwal/f3de86c7fec6910a738354848c12825c 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
states = df3.state_name | |
active = df3.active | |
colours = ["skyblue", "blue", "red", "yellow", "green"] | |
plt.figure(figsize=(7,7)) | |
plt.pie(active, labels=states, autopct='%1.1f%%', colors=colours) | |
central_circle = plt.Circle((0, 0), 0.4, color='white') | |
fig = plt.gcf() | |
fig.gca().add_artist(central_circle) | |
plt.rc('font', size=12) | |
plt.title("Top 5 Active cases", fontsize=20) | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment