I am trying to save multiple graph in a directory with unique file name. I have used plt.savefig() but its work only for one graph and also used below
Edited
path = 'C:/Users/Vishnu/Desktop/Hiral_project_analysis/Output/'
plt.savefig(path + s_no + '_' + pdb_id + ".png")
I have used above code to save the output file in directory with unique name... Now I am able to save the graphs but all graphs are blank (White Screen)...
Please help me
candidates?