使用matshow

时间:2018-10-16 09:30:31

标签: python matplotlib matrix graph correlation

我正在尝试更好地格式化矩阵。我当前的代码以图片中所示的格式给我o / p:

enter image description here

import numpy as np
import matplotlib.pyplot as plt
plt.figure(figsize=(10,10))
plt.matshow(final.corr(), fignum = 1)

plt.xticks(range(len(final.columns)), final.columns)
plt.yticks(range(len(final.columns)), final.columns)

0 个答案:

没有答案