pylab.savefig() and pylab.show() image difference
- by Jack1990
I'm making an script to automatically create plots from .xvg files,
but there's a problem when I'm trying to use pylab's savefig() method.
Using pylab.show() and saving from there, everything's fine.
Using pylab.show()
Using pylab.savefig()
def producePlot(timestep, energy_values,type_line = 'r', jump = 1,finish = 100):
fc =…