Как сохранить график для каждого графика, созданного в цикле for?
Вот мой код:
for frame in all_frames: test[frame.columns[0]].plot(kind = 'line', x = 'date') plt.ylabel('Percent Change from Month and Year Prior')
Просто добавьте matplotlib.pyplot.savefig внутри цикла for:
matplotlib.pyplot.savefig
for
for frame in all_frames: test[frame.columns[0]].plot(kind = 'line', x = 'date') plt.ylabel('Percent Change from Month and Year Prior') plt.savefig('{}'.format(frame.columns[0]))