Skip to content

Instantly share code, notes, and snippets.

@AI-MOO
Last active April 20, 2022 18:31
Show Gist options
  • Save AI-MOO/15f525da181518049458a31aa7ba4b17 to your computer and use it in GitHub Desktop.
Save AI-MOO/15f525da181518049458a31aa7ba4b17 to your computer and use it in GitHub Desktop.
# bar chart تمثيل النشاطات البدنية من خلال الرسم البياني
colors = cm.rainbow(np.linspace(0, 1, 6))
plt.figure(figsize=(10,6))
plt.bar(df_activity_count.index, df_activity_count['Counts'],width=0.3,color=colors)
plt.xticks(rotation=45,fontsize=12)
plt.yticks(rotation=45,fontsize=12)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment