I realize that a lot probably has to be added but if someone could point me in the right direction for applying a line of best fit for the exponential graph that would be much appreciated. Here is what I have so far:
import matplotlib.pyplot as plt
x = []
y = []
readFile = open ('TEXT.txt', 'r')
sepFile = readFile.read().split('\n')
readFile.close()
for plotPair in sepFile:
xAndY = plotPair.split('\t')
x.append(int (xAndY[0]))
y.append(float (xAndY[1]))
print x
print y
plt.plot (x, y, 'o' )
plt.xlabel('')
plt.ylabel('')
plt.show()