Loading sas_temper/output.py +5 −1 Original line number Diff line number Diff line Loading @@ -174,7 +174,11 @@ def outputSetRes(conf, res): for i in range(0,parms): ave[i] = np.average(vals[i]) std[i] = np.std(vals[i]) #this is to address a bad division that does not crash the code with np.errstate(divide='ignore', invalid='ignore'): cor = np.corrcoef(vals,y=None,rowvar=True) #this gets rid of junk values when parameters are fixed for i in range(0,parms): for j in range(0,parms): Loading Loading
sas_temper/output.py +5 −1 Original line number Diff line number Diff line Loading @@ -174,7 +174,11 @@ def outputSetRes(conf, res): for i in range(0,parms): ave[i] = np.average(vals[i]) std[i] = np.std(vals[i]) #this is to address a bad division that does not crash the code with np.errstate(divide='ignore', invalid='ignore'): cor = np.corrcoef(vals,y=None,rowvar=True) #this gets rid of junk values when parameters are fixed for i in range(0,parms): for j in range(0,parms): Loading