import matplotlib.pyplot as plt import math import numpy as np import pandas as pd from pylab import * from scipy.optimize import curve_fit name = str(input("What is the name of the file?")) file = open(name, "r") content = file.read() data = content.split() #to be used later def func(x, a, c): return a*np.exp(c*x) if(name[len(name)-2]=="u"): #slurm file .out i=0 a=0 while(i