我想保存从missingno软件包生成的图形。该图由msno.matrix(df)
生成:
我尝试过:
fig = msno.matrix(df)
fig.save_fig('plot.png')
但是它不起作用。我收到以下消息:
AttributeError:“ AxesSubplot”对象没有属性“ savefig”
答案 0 :(得分:0)
在注释中添加了@ user2977071,它还应该添加bbox_inches来帮助保存整个图形。
fig = msno.matrix(df)
fig_copy = fig.get_figure()
fig_copy.savefig('plot.png', bbox_inches = 'tight')