I have a data set with huge number of features, so analysing the correlation matrix has become very difficult. I want to plot a correlation matrix which we get using d
d
statmodels graphics also gives a nice view of correlation matrix
import statsmodels.api as sm import matplotlib.pyplot as plt corr = dataframe.corr() sm.graphics.plot_corr(corr, xnames=list(corr.columns)) plt.show()