I have this code from seaborn documentation to generate a mask for the upper triangle of a given correlation matrix
# Compute the correlation matrix
corr = d.corr()
# Generate a mask for the upper triangle
mask = np.zeros_like(corr, dtype=np.bool)
mask[np.triu_indices_from(mask)] = True
how would one achieve the invert, a mask for the lower triangle?