我使用corr
python的方法查看我的数据集的相关矩阵。考虑到它太大,一次看不到全部,我不得不左右滚动才能看到它。 ,我尝试将其另存为图像,但未能显示此错误
“ DataFrame”对象没有属性“ savefig”
这是我写的代码:
path_to_file = "C:\\Users\\hmk\\Desktop\\Final.csv"
data = pd.read_csv(path_to_file)
corr = data.corr()
corr.style.background_gradient(cmap='coolwarm')
corr.savefig('result.png', bbox_inches='tight', pad_inches=0.0)