How to set xticks for individual axes in seaborn catplot

1.9k Views Asked by At

enter image description here

I have below code with axes in rows but only the last axes shows the xticks while I want to show the xticks on on each Axes. Please someone help me with this and also guide me how to individually control all the elements of axes.

g = sns.catplot(data = df_full[df_full['Team'].isin(Test_playing_list)], x = 'Match_Year',  #palette = sns.color_palette('Paired', 7),
                y = 'Win_percent',kind = "bar", height=3, aspect=3, linewidth = 2, row = 'Team', orient="v", facet_kws={'sharey':False, 'sharex':False})
plt.xticks(rotation = 90)


#plt.grid()
plt.show
0

There are 0 best solutions below