Last active
October 25, 2021 00:17
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
# تهيئة مساحة للرسم البياني | |
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