如何保存从missingno(python)生成的图形以可视化缺失值?

时间:2019-12-10 20:15:19

标签: python

我想保存从missingno软件包生成的图形。该图由msno.matrix(df)生成:

enter image description here

我尝试过:

fig = msno.matrix(df)
fig.save_fig('plot.png')

但是它不起作用。我收到以下消息:

  

AttributeError:“ AxesSubplot”对象没有属性“ savefig”

1 个答案:

答案 0 :(得分:0)

在注释中添加了@ user2977071,它还应该添加bbox_inches来帮助保存整个图形。

fig = msno.matrix(df)
fig_copy = fig.get_figure()
fig_copy.savefig('plot.png', bbox_inches = 'tight')