Skip to content

Instantly share code, notes, and snippets.

@AI-MOO
Last active April 20, 2022 17:30
Show Gist options
  • Save AI-MOO/0de4ebaea8f7484a96438398ee0315f3 to your computer and use it in GitHub Desktop.
Save AI-MOO/0de4ebaea8f7484a96438398ee0315f3 to your computer and use it in GitHub Desktop.
# Pie chart تمثيل النسب المئوية لفئات النشاط البدني من خلال الرسم البياني
plt.figure(figsize=(16,8))
plt.pie(df_activity_count['Counts'], labels = df_activity_count.index, autopct = '%0.2f')
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment