I'm trying to add a legend in this countplot. I don't know where is the problem? why it's not working. Will any brother help me to solve this problem?
ax=sns.countplot(x='Tomatoe types', data=df)
ax.set_title('Tomatoe types',fontsize = 18, fontweight='bold', color='white')
ax.set_xlabel('types', fontsize = 15, color='white')
ax.set_ylabel('count', fontsize = 15, color='white')
ax.legend(labels = ['Bad', 'Fresh', 'Finest'])
for i in ax.patches:
ax.text(i.get_x()+i.get_width()/2, i.get_height()+0.75, i.get_height(),
horizontalalignment='center',size=14)
The easiest is to use
hue=
with the same variable asx=
. You'll need to setdodge=False
as by default a position is reserved for each x - hue combination.Note that when you aren't using
hue
, no legend is added as the names and colors are given by the x tick labels.