I'm a bit struggling with seaborn Pairgrid.
Let's say I have a Pairgrid like this:
As you can see, the upper triangle plots mirror the lower triangle ones. I'd like to be able to plot only the lower triangle plots, but I found no easy way so far to do it. Can you help me?
Probably should be an easier way, but this works
this is basically the same as the accepted answer, but uses the official methods from
seaborn.PairGrid
:hiding the lower half is also easy:
or hiding the diagonal:
alternatively, just use the
PairGrid
directly for more control:which gives: