I create my pairplot from data which does not have labels for its dimensions, but I would like to add a label to the x and y axes of the whole plot which explain what the individual numbers (which are the dimensions of my data) derive from.
Additionally, I would like to crop the plot so that it shows only the lower part of the plot. For this I also need to move the label of the x axis downwards.
Basically, I want the plot from this image:
This is how I create my pairplot:
g = sns.pairplot(data=sts_df.iloc[::100, :])
g.fig.set_size_inches(width, 11)
g.set(yticks=[])
g.set(xticks=[])
g.fig.suptitle("Pairplot across 15 dimensions of STS data")
plt.show()