I have a series of subplots I created in Python as apart of a single figure. I would like to be able to export each subplot graph as an individual file to be saved in the current working directory. I've tried using ax[I].savefig( ... )
, but I see that AxesSubplot
object has no attribute savefig
, which is only for the overall figure.
Are there any workarounds to this? I have 9 subplots, and I want to save them as 9 individual files.