df = data["Fund allotted(in ₹crores)"] | |
labels = data["Department /Ministry"] | |
plt.figure(figsize=(7,7)) | |
plt.pie(df, labels=labels, autopct='%1.1f%%', startangle=90, pctdistance=0.85, shadow =True) | |
central_circle = plt.Circle((0, 0), 0.5, color='white') | |
fig = plt.gcf() | |
fig.gca().add_artist(central_circle) | |
plt.rc('font', size=12) | |
plt.title("Distribution of The Budget", fontsize=20) | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment