from matplotlib import pylab as pl import numpy as np t, tec = np.loadtxt('coefficient-data.txt',unpack=True) fig = pl.figure() pl.ylabel("Thermal Expansion Coefficient/ 10^-6 K") pl.xlabel("Temperature/ K") pl.plot(t, tec*1000000,color='green') pl.show()