SyntaxFix
Write A Post
Hire A Developer
Questions
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()