Skip to content

Instantly share code, notes, and snippets.

@AI-MOO
Last active October 25, 2021 00:17
# تهيئة مساحة للرسم البياني
plt.subplot()
# Bar Plot رسم بياني من نوع
df['gender'].value_counts().plot(kind='bar', title='Gender of students',
figsize=(8,6), color='#FF9034')
# x اتجاه النصوص على المحور
plt.xticks(rotation=0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment