Gráfico de correlação do PyPlot

import matplotlib.pyplot as plt

plt.matshow(dataframe.corr())
plt.show()
Shanti