I have a heatmap which I plot in python and I want to export it to excel.
I ve tried this:
figure=sns.heatmap(df, cmap='viridis_r', annot=True, cbar=False).set(title=str(store))
in order to export it with xlsx writer. But i get the message:
AttributeError: 'list' object has no attribute 'get'.
What can I do in order to export a "jpg" to excel?