I have the following data:
male 843
female 466
Name: Sex, dtype: int64
I plotted bar plots for the same using countplot from seaborn, and it worked.
But I would like to know what could be its alternative in matplotlib.
I did:
sns.countplot(x = 'Sex', data = complete_data)
It gave me:
