I would like to fix label problems in a seaborn graph, I have more than 30 items in the x axis. How to reduce the label dimension or may be rotate the graph?
import seaborn as sns g = sns.factorplot(x="target", data=df3, kind="count", palette="BuPu", size=6, aspect=1.5) 
plt.xticks(rotation=90)? (whereimport matplotlib.pylab as plt)g.set(xticks=np.arange(0, N, 3))to show only every third label.