Hi..
How to change color of the plots when we merge 2 or more transmission spectra in same script. For ex: if we want red color for 1st .nc file what i should include in the script. The script used is as follows:
t = nlread('analysis.nc', TransmissionSpectrum)[0]
t = nlread('analysis1.nc', TransmissionSpectrum)[0]
import pylab as P
P.plot(t.evaluate(),t.energies() )
P.plot(t.evaluate(),t.energies() )
P.xlabel("Transmission T(E)")
P.ylabel("Energy / eV")
P.savefig('transmission2.png', dpi=120)