Skip to content
Snippets Groups Projects
Commit aba811da authored by “Serge's avatar “Serge
Browse files

f-string issue fixed

parent eb1329dc
No related branches found
No related tags found
No related merge requests found
......@@ -212,8 +212,7 @@ def model_summary(d):
print(f' X_hat_{i} = {d["X_hat"][i]:8.3f}'
+ f' +/- {np.sqrt(d["Sigma_X_hat"][i,i]):6.3f}'
+ f' (c.o.v. '
+ f'{(np.sqrt(d["Sigma_X_hat"][i,i])
/d["X_hat"][i]):6.3f})')
+ f'{(np.sqrt(d["Sigma_X_hat"][i,i])/d["X_hat"][i]):6.3f})')
print('----------------\n')
def load_pickle_file(filename):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment