I have 100 Variables and I am trying to plot these variables in a correlation matrix. However as you can see on the picture I have too many variables to have a good visual presentation. Is there a graphical presentation which only shows the relevant correlated variables like above the threshold of 0.5?
This is the code I used:
import numpy as np # Data manipulation
import matplotlib.pyplot as plt
import seaborn c = df_train_new.corr()
plt.figure(figsize=(20,20))
seaborn.heatmap(c, cmap='RdYlGn_r', mask = (np.abs(c) >= 0.5))
plt.show()