You need to skip the x shortcuts manually, as in this example:
import seaborn as sns
import matplotlib.pylab as plt
import pandas
import numpy as np
df = pandas.DataFrame({"a": range(1001, 1031),
"l": ["A",] * 15 + ["B",] * 15,
"v": np.random.rand(30)})
g = sns.FacetGrid(row="l", data=df)
g.map(sns.pointplot, "a", "v")
for ax in g.axes.flat:
labels = ax.get_xticklabels()
for i,l in enumerate(labels):
if(i%2 == 0): labels[i] = ''
ax.set_xticklabels(labels, rotation=30)
plt.show()

source
share