I have a python script to see a plot in ATK, but I cant save it into a data file, here's the plot command
--------------------------------------
# Plot the data
import pylab
pylab.plot(energ,alpha,'b', label='plot')
pylab.xlabel(r"Energy (eV)", size=16)
pylab.ylabel(r"alpha",size=16)
pylab.show()
-------------------------
I want to save the data for plotting into a .dat file , consisting of two columns .. how do I do that?