How can I add label to this horizontal bar chart using seaborn library?
g = sns.factorplot(y ='Pagename',x="count", col="day_of_week",
data= gd,
kind="bar", size=5, aspect=.5)
g.set_xticklabels(rotation=30, ha="right")
plt.tight_layout()
plt.show()