Is there a way that I can easily add the axes labels for each of the subplots in Seaborn pair plot? This is related to this question but instead of adding the tick labels I want to add the axes labels as the pairplot I am having is 9*9 and I dont want to scroll down every time to check the column name.
I was hoping that it would be some thing easy like
for ax in g.axes.flat:
_ = plt.setp(ax.get_ylabels(), visible=True)
_ = plt.setp(ax.get_xlabels(), visible=True)