I am having issue saving plots to a folder. I want to store all of the plots created in a for loop to a folder that I previously created.
I tried using imsave()
function as follows:
for p in samples:
fig, ax = plt.subplots(1, 1)
ax.boxplot([group1[p], group2[p], group3[p]])
ax.set_xticklabels(["group1", "group2", "group3"])
ax.set_ylabel("mean")
plt.show()
plt.imsave('/Users/.../Desktop/.../folder', ax)
But it does not save any plot to the folder, it just prints last plot and another one with all of the plots on it. I also tried using savefig() but also did not manage to save plots to my folder.
Additionally, it would be perfect if each plot had a name for example plot_p
where p
changes in a for loop, so I tried this:
plt.savefig("/Users/.../Desktop/.../folder/plot_{p}.png")
which gave me an error that more than 20 plots want to be opened (which is a good sign) but just 1 is saved in the folder.
I think you just need to change the order of plt.savefig() and plt.show() or just remove it. Try the following