plt.figure(figsize = (8,4))
axl= sns.countplot(x='hotel', hue = 'is_canceled', data = df, palette = 'Blues')
legend_labels,_ = axl.get_legend_handles_labels()
#axl.legend(bbox_to_anchor(1,1))
plt.title('Reservation status in different hotels', size = 20)
plt.xlabel('hotel')
plt.ylabel('Number of reservations')
plt.show()